Changeset f49b0ea in mainline for uspace/srv/fs/tmpfs/tmpfs.c
- Timestamp:
- 2008-06-06T15:16:41Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cde485d
- Parents:
- f86c184
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
rf86c184 rf49b0ea 62 62 [IPC_METHOD_TO_VFS_OP(VFS_TRUNCATE)] = VFS_OP_DEFINED, 63 63 [IPC_METHOD_TO_VFS_OP(VFS_MOUNT)] = VFS_OP_DEFINED, 64 [IPC_METHOD_TO_VFS_OP(VFS_MOUNTED)] = VFS_OP_DEFINED, 64 65 [IPC_METHOD_TO_VFS_OP(VFS_UNMOUNT)] = VFS_OP_NULL, 65 66 [IPC_METHOD_TO_VFS_OP(VFS_DESTROY)] = VFS_OP_DEFINED, … … 106 107 callid = async_get_call(&call); 107 108 switch (IPC_GET_METHOD(call)) { 109 case VFS_MOUNTED: 110 tmpfs_mounted(callid, &call); 111 break; 108 112 case VFS_MOUNT: 109 113 tmpfs_mount(callid, &call);
Note:
See TracChangeset
for help on using the changeset viewer.