Changeset 5cde90f in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2010-02-19T17:16:46Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 617652f
- Parents:
- b86d436 (diff), f41aa81 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
rb86d436 r5cde90f 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.