Changes in uspace/srv/vfs/vfs.c [2b88074b:19f857a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r2b88074b r19f857a 42 42 #include <stdio.h> 43 43 #include <bool.h> 44 #include <str ing.h>44 #include <str.h> 45 45 #include <as.h> 46 46 #include <atomic.h> … … 73 73 ipc_callid_t callid = async_get_call(&call); 74 74 75 fs_handle_t fs_handle;76 int phone;77 78 75 switch (IPC_GET_METHOD(call)) { 79 76 case IPC_M_PHONE_HUNGUP: … … 86 83 case VFS_IN_MOUNT: 87 84 vfs_mount(callid, &call); 85 break; 86 case VFS_IN_UNMOUNT: 87 vfs_unmount(callid, &call); 88 88 break; 89 89 case VFS_IN_OPEN: … … 134 134 } 135 135 136 /* TODO: cleanup after the client */136 vfs_files_done(); 137 137 } 138 138
Note:
See TracChangeset
for help on using the changeset viewer.