Changeset 828d215 in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2007-11-03T15:25:01Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ec01adf
- Parents:
- 20614d0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r20614d0 r828d215 57 57 58 58 /* 59 * Initialize the table of open files.60 */61 if (!vfs_conn_open_files_init()) {62 ipc_answer_fast_0(iid, ENOMEM);63 return;64 }65 66 /*67 59 * The connection was opened via the IPC_CONNECT_ME_TO call. 68 60 * This call needs to be answered. … … 97 89 break; 98 90 case VFS_MOUNT: 91 vfs_mount(callid, &call); 92 keep_on_going = false; 93 break; 94 case VFS_OPEN: 95 vfs_open(callid, &call); 96 break; 99 97 case VFS_UNMOUNT: 100 case VFS_OPEN:101 98 case VFS_CREATE: 102 99 case VFS_CLOSE:
Note:
See TracChangeset
for help on using the changeset viewer.