Changes in uspace/srv/vfs/vfs.c [0fe52ef:27b76ca] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/srv/vfs/vfs.c ¶
r0fe52ef r27b76ca 36 36 */ 37 37 38 #include <vfs/vfs.h>39 38 #include <ipc/services.h> 40 39 #include <abi/ipc/event.h> … … 48 47 #include <as.h> 49 48 #include <atomic.h> 50 #include < macros.h>49 #include <vfs/vfs.h> 51 50 #include "vfs.h" 52 51 53 52 #define NAME "vfs" 54 55 enum {56 VFS_TASK_STATE_CHANGE57 };58 53 59 54 static void vfs_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg) … … 139 134 } 140 135 136 enum { 137 VFS_TASK_STATE_CHANGE 138 }; 139 141 140 static void notification_received(ipc_callid_t callid, ipc_call_t *call) 142 141 { … … 144 143 case VFS_TASK_STATE_CHANGE: 145 144 if (IPC_GET_ARG1(*call) == VFS_PASS_HANDLE) 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)); 145 vfs_pass_handle(IPC_GET_ARG4(*call), 146 IPC_GET_ARG5(*call), (int) IPC_GET_ARG2(*call)); 150 147 break; 151 148 default:
Note:
See TracChangeset
for help on using the changeset viewer.