Changeset c20aa06 in mainline for uspace/srv/fs/tmpfs/tmpfs.c
- Timestamp:
- 2009-06-03T19:01:53Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 80e3c69
- Parents:
- 17fd1d4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r17fd1d4 rc20aa06 115 115 tmpfs_truncate(callid, &call); 116 116 break; 117 case VFS_CLOSE: 118 tmpfs_close(callid, &call); 119 break; 117 120 case VFS_DESTROY: 118 121 tmpfs_destroy(callid, &call); 122 break; 123 case VFS_OPEN_NODE: 124 tmpfs_open_node(callid, &call); 125 break; 126 case VFS_DEVICE: 127 tmpfs_device(callid, &call); 128 break; 129 case VFS_SYNC: 130 tmpfs_sync(callid, &call); 119 131 break; 120 132 default:
Note:
See TracChangeset
for help on using the changeset viewer.