Changeset 64b67c3 in mainline for uspace/srv/fs/tmpfs/tmpfs.c
- Timestamp:
- 2008-05-18T21:58:54Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 92f9baca
- Parents:
- ce7311fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
rce7311fc r64b67c3 59 59 [IPC_METHOD_TO_VFS_OP(VFS_WRITE)] = VFS_OP_DEFINED, 60 60 [IPC_METHOD_TO_VFS_OP(VFS_TRUNCATE)] = VFS_OP_DEFINED, 61 [IPC_METHOD_TO_VFS_OP(VFS_MOUNT)] = VFS_OP_ NULL,61 [IPC_METHOD_TO_VFS_OP(VFS_MOUNT)] = VFS_OP_DEFINED, 62 62 [IPC_METHOD_TO_VFS_OP(VFS_UNMOUNT)] = VFS_OP_NULL, 63 63 [IPC_METHOD_TO_VFS_OP(VFS_DESTROY)] = VFS_OP_DEFINED, … … 104 104 callid = async_get_call(&call); 105 105 switch (IPC_GET_METHOD(call)) { 106 case VFS_MOUNT: 107 tmpfs_mount(callid, &call); 108 break; 106 109 case VFS_LOOKUP: 107 110 tmpfs_lookup(callid, &call);
Note:
See TracChangeset
for help on using the changeset viewer.