Changeset 4198f9c3 in mainline for uspace/srv/fs/devfs/devfs.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/fs/devfs/devfs.c
r6408be3 r4198f9c3 68 68 case IPC_M_PHONE_HUNGUP: 69 69 return; 70 case VFS_ MOUNTED:70 case VFS_OUT_MOUNTED: 71 71 devfs_mounted(callid, &call); 72 72 break; 73 case VFS_ MOUNT:73 case VFS_OUT_MOUNT: 74 74 devfs_mount(callid, &call); 75 75 break; 76 case VFS_ LOOKUP:76 case VFS_OUT_LOOKUP: 77 77 devfs_lookup(callid, &call); 78 78 break; 79 case VFS_O PEN_NODE:79 case VFS_OUT_OPEN_NODE: 80 80 devfs_open_node(callid, &call); 81 81 break; 82 case VFS_ DEVICE:82 case VFS_OUT_DEVICE: 83 83 devfs_device(callid, &call); 84 84 break; 85 case VFS_ READ:85 case VFS_OUT_READ: 86 86 devfs_read(callid, &call); 87 87 break; 88 case VFS_ WRITE:88 case VFS_OUT_WRITE: 89 89 devfs_write(callid, &call); 90 90 break; 91 case VFS_ TRUNCATE:91 case VFS_OUT_TRUNCATE: 92 92 devfs_truncate(callid, &call); 93 93 break; 94 case VFS_ CLOSE:94 case VFS_OUT_CLOSE: 95 95 devfs_close(callid, &call); 96 96 break; 97 case VFS_ SYNC:97 case VFS_OUT_SYNC: 98 98 devfs_sync(callid, &call); 99 99 break; 100 case VFS_ DESTROY:100 case VFS_OUT_DESTROY: 101 101 devfs_destroy(callid, &call); 102 102 break;
Note:
See TracChangeset
for help on using the changeset viewer.