Changeset 96b02eb9 in mainline for uspace/srv/fs/devfs/devfs_ops.c
- Timestamp:
- 2010-12-14T12:52:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b10dab
- Parents:
- 554debd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/devfs_ops.c
r554debd r96b02eb9 420 420 421 421 /* Accept the mount options */ 422 ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0,422 sysarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0, 423 423 0, NULL); 424 424 if (retval != EOK) { … … 584 584 585 585 /* Wait for reply from the driver. */ 586 ipcarg_t rc;586 sysarg_t rc; 587 587 async_wait_for(msg, &rc); 588 588 size_t bytes = IPC_GET_ARG1(answer); … … 648 648 649 649 /* Wait for reply from the driver. */ 650 ipcarg_t rc;650 sysarg_t rc; 651 651 async_wait_for(msg, &rc); 652 652 size_t bytes = IPC_GET_ARG1(answer); … … 752 752 753 753 /* Wait for reply from the driver */ 754 ipcarg_t rc;754 sysarg_t rc; 755 755 async_wait_for(msg, &rc); 756 756
Note:
See TracChangeset
for help on using the changeset viewer.