Changeset 07e01e6 in mainline
- Timestamp:
- 2008-02-21T21:09:21Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fdb7795
- Parents:
- d1ce550
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/vfs.c
rd1ce550 r07e01e6 176 176 } 177 177 req = async_send_1(vfs_phone, VFS_READ, fildes, &answer); 178 if (ipc_data_read_start(vfs_phone, (void *)buf, nbyte) != EOK) { 178 rc = ipc_data_read_start(vfs_phone, (void *)buf, nbyte); 179 if (rc != EOK) { 179 180 async_wait_for(req, NULL); 180 181 async_serialize_end(); … … 209 210 } 210 211 req = async_send_1(vfs_phone, VFS_WRITE, fildes, &answer); 211 if (ipc_data_write_start(vfs_phone, (void *)buf, nbyte) != EOK) { 212 rc = ipc_data_write_start(vfs_phone, (void *)buf, nbyte); 213 if (rc != EOK) { 212 214 async_wait_for(req, NULL); 213 215 async_serialize_end();
Note:
See TracChangeset
for help on using the changeset viewer.