Changes in uspace/lib/c/generic/vfs/vfs.c [73fbcbb:38db6288] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vfs/vfs.c
r73fbcbb r38db6288 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.