Changeset 4c14b88 in mainline for uspace/lib/c/generic/vfs/vfs.c
- Timestamp:
- 2013-12-31T07:57:14Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b973dc
- Parents:
- 6297465 (diff), 208b5f5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vfs/vfs.c
r6297465 r4c14b88 342 342 } 343 343 344 ssize_t read(int fildes, void *buf, size_t nbyte) 344 ssize_t read(int fildes, void *buf, size_t nbyte) 345 345 { 346 346 sysarg_t rc; … … 348 348 aid_t req; 349 349 350 if (nbyte > DATA_XFER_LIMIT) 351 nbyte = DATA_XFER_LIMIT; 352 350 353 async_exch_t *exch = vfs_exchange_begin(); 351 354 352 355 req = async_send_1(exch, VFS_IN_READ, fildes, &answer); 353 rc = async_data_read_start(exch, (void *) buf, nbyte);356 rc = async_data_read_start(exch, (void *) buf, nbyte); 354 357 if (rc != EOK) { 355 358 vfs_exchange_end(exch); … … 377 380 aid_t req; 378 381 382 if (nbyte > DATA_XFER_LIMIT) 383 nbyte = DATA_XFER_LIMIT; 384 379 385 async_exch_t *exch = vfs_exchange_begin(); 380 386 381 387 req = async_send_1(exch, VFS_IN_WRITE, fildes, &answer); 382 rc = async_data_write_start(exch, (void *) buf, nbyte);388 rc = async_data_write_start(exch, (void *) buf, nbyte); 383 389 if (rc != EOK) { 384 390 vfs_exchange_end(exch); … … 736 742 } 737 743 744 int remove(const char *path) 745 { 746 return unlink(path); 747 } 748 738 749 int chdir(const char *path) 739 750 {
Note:
See TracChangeset
for help on using the changeset viewer.