Changeset 6769005 in mainline for uspace/srv/vfs
- Timestamp:
- 2018-10-31T06:03:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53ee7a0
- Parents:
- 94ab1fee
- git-author:
- Jakub Jermar <jakub@…> (2018-10-28 12:42:35)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-31 06:03:38)
- Location:
- uspace/srv/vfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r94ab1fee r6769005 56 56 static void vfs_pager(ipc_call_t *icall, void *arg) 57 57 { 58 async_answer_ 0(icall, EOK);58 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 59 59 60 60 while (true) { … … 83 83 vfs_op_pass_handle( 84 84 (task_id_t) MERGE_LOUP32(IPC_GET_ARG4(*call), 85 IPC_GET_ARG5(*call)), call-> in_task_id,85 IPC_GET_ARG5(*call)), call->task_id, 86 86 (int) IPC_GET_ARG2(*call)); 87 87 } -
uspace/srv/vfs/vfs_ipc.c
r94ab1fee r6769005 324 324 * This call needs to be answered. 325 325 */ 326 async_answer_ 0(icall, EOK);326 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 327 327 328 328 while (cont) {
Note:
See TracChangeset
for help on using the changeset viewer.