Changeset 4198f9c3 in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2009-06-28T13:43:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 852b801
- Parents:
- 6408be3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r6408be3 r4198f9c3 80 80 keep_on_going = false; 81 81 break; 82 case VFS_ REGISTER:82 case VFS_IN_REGISTER: 83 83 vfs_register(callid, &call); 84 84 keep_on_going = false; 85 85 break; 86 case VFS_ MOUNT:86 case VFS_IN_MOUNT: 87 87 vfs_mount(callid, &call); 88 88 break; 89 case VFS_ OPEN:89 case VFS_IN_OPEN: 90 90 vfs_open(callid, &call); 91 91 break; 92 case VFS_ OPEN_NODE:92 case VFS_IN_OPEN_NODE: 93 93 vfs_open_node(callid, &call); 94 94 break; 95 case VFS_ CLOSE:95 case VFS_IN_CLOSE: 96 96 vfs_close(callid, &call); 97 97 break; 98 case VFS_ READ:98 case VFS_IN_READ: 99 99 vfs_read(callid, &call); 100 100 break; 101 case VFS_ WRITE:101 case VFS_IN_WRITE: 102 102 vfs_write(callid, &call); 103 103 break; 104 case VFS_ SEEK:104 case VFS_IN_SEEK: 105 105 vfs_seek(callid, &call); 106 106 break; 107 case VFS_ TRUNCATE:107 case VFS_IN_TRUNCATE: 108 108 vfs_truncate(callid, &call); 109 109 break; 110 case VFS_ MKDIR:110 case VFS_IN_MKDIR: 111 111 vfs_mkdir(callid, &call); 112 112 break; 113 case VFS_ UNLINK:113 case VFS_IN_UNLINK: 114 114 vfs_unlink(callid, &call); 115 115 break; 116 case VFS_ RENAME:116 case VFS_IN_RENAME: 117 117 vfs_rename(callid, &call); 118 118 break; 119 case VFS_ DEVICE:119 case VFS_IN_DEVICE: 120 120 vfs_device(callid, &call); 121 121 break; 122 case VFS_ SYNC:122 case VFS_IN_SYNC: 123 123 vfs_sync(callid, &call); 124 124 break; 125 case VFS_ NODE:125 case VFS_IN_NODE: 126 126 vfs_node(callid, &call); 127 127 break;
Note:
See TracChangeset
for help on using the changeset viewer.