Changeset e2ab36f1 in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2011-08-19T12:38:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36b16bc, 9247c02c
- Parents:
- 903bac0a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r903bac0a re2ab36f1 36 36 */ 37 37 38 #include <vfs/vfs.h> 38 39 #include <ipc/services.h> 39 40 #include <abi/ipc/event.h> … … 47 48 #include <as.h> 48 49 #include <atomic.h> 49 #include < vfs/vfs.h>50 #include <macros.h> 50 51 #include "vfs.h" 51 52 … … 143 144 case VFS_TASK_STATE_CHANGE: 144 145 if (IPC_GET_ARG1(*call) == VFS_PASS_HANDLE) 145 vfs_pass_handle(IPC_GET_ARG4(*call), 146 IPC_GET_ARG5(*call), (int) IPC_GET_ARG2(*call)); 146 vfs_pass_handle( 147 (task_id_t) MERGE_LOUP32(IPC_GET_ARG4(*call), 148 IPC_GET_ARG5(*call)), call->in_task_id, 149 (int) IPC_GET_ARG2(*call)); 147 150 break; 148 151 default:
Note:
See TracChangeset
for help on using the changeset viewer.