提交 75061a27 编写于 作者: B Bernard Xiong

[libc] Fix the result length issue in aio_read_work.

上级 99bef019
...@@ -170,7 +170,7 @@ static void aio_read_work(struct rt_work* work, void* work_data) ...@@ -170,7 +170,7 @@ static void aio_read_work(struct rt_work* work, void* work_data)
if (len <= 0) if (len <= 0)
cb->aio_result = errno; cb->aio_result = errno;
else else
cb->aio_result = 0; cb->aio_result = len;
rt_hw_interrupt_enable(level); rt_hw_interrupt_enable(level);
return ; return ;
...@@ -321,6 +321,7 @@ static void aio_write_work(struct rt_work* work, void* work_data) ...@@ -321,6 +321,7 @@ static void aio_write_work(struct rt_work* work, void* work_data)
return; return;
} }
/** /**
* The aio_write() function shall write aiocbp->aio_nbytes to the file associated * The aio_write() function shall write aiocbp->aio_nbytes to the file associated
* with aiocbp->aio_fildes from the buffer pointed to by aiocbp->aio_buf. The * with aiocbp->aio_fildes from the buffer pointed to by aiocbp->aio_buf. The
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册