Changeset b3cd9eb in mainline
- Timestamp:
- 2007-11-24T18:44:06Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d2e0a8cb
- Parents:
- ebd9392
- Location:
- uspace/srv/vfs
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/Makefile
rebd9392 rb3cd9eb 49 49 vfs_mount.c \ 50 50 vfs_open.c \ 51 vfs_read.c \ 51 52 vfs_unlink.c 52 53 -
uspace/srv/vfs/vfs.c
rebd9392 rb3cd9eb 95 95 vfs_open(callid, &call); 96 96 break; 97 case VFS_READ: 98 vfs_read(callid, &call); 99 break; 97 100 case VFS_UNMOUNT: 98 101 case VFS_CREATE: 99 102 case VFS_CLOSE: 100 case VFS_READ:101 103 case VFS_WRITE: 102 104 case VFS_SEEK: -
uspace/srv/vfs/vfs.h
rebd9392 rb3cd9eb 199 199 extern void vfs_mount(ipc_callid_t, ipc_call_t *); 200 200 extern void vfs_open(ipc_callid_t, ipc_call_t *); 201 extern void vfs_read(ipc_callid_t, ipc_call_t *); 201 202 202 203 #endif
Note:
See TracChangeset
for help on using the changeset viewer.