Changeset 852b801 in mainline for uspace/srv/fs/tmpfs
- Timestamp:
- 2009-06-28T18:59:02Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75160a6
- Parents:
- 4198f9c3
- Location:
- uspace/srv/fs/tmpfs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r4198f9c3 r852b801 126 126 tmpfs_open_node(callid, &call); 127 127 break; 128 case VFS_OUT_ DEVICE:129 tmpfs_ device(callid, &call);128 case VFS_OUT_STAT: 129 tmpfs_stat(callid, &call); 130 130 break; 131 131 case VFS_OUT_SYNC: -
uspace/srv/fs/tmpfs/tmpfs.h
r4198f9c3 r852b801 87 87 extern void tmpfs_write(ipc_callid_t, ipc_call_t *); 88 88 extern void tmpfs_truncate(ipc_callid_t, ipc_call_t *); 89 extern void tmpfs_stat(ipc_callid_t, ipc_call_t *); 89 90 extern void tmpfs_close(ipc_callid_t, ipc_call_t *); 90 91 extern void tmpfs_destroy(ipc_callid_t, ipc_call_t *); 91 92 extern void tmpfs_open_node(ipc_callid_t, ipc_call_t *); 92 extern void tmpfs_device(ipc_callid_t, ipc_call_t *);93 93 extern void tmpfs_sync(ipc_callid_t, ipc_call_t *); 94 94 -
uspace/srv/fs/tmpfs/tmpfs_ops.c
r4198f9c3 r852b801 629 629 } 630 630 631 void tmpfs_ device(ipc_callid_t rid, ipc_call_t *request)631 void tmpfs_stat(ipc_callid_t rid, ipc_call_t *request) 632 632 { 633 633 ipc_answer_0(rid, ENOTSUP);
Note:
See TracChangeset
for help on using the changeset viewer.