Changeset e700970 in mainline
- Timestamp:
- 2011-04-16T14:02:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6fcc03a
- Parents:
- 6fc5262
- Location:
- uspace/srv/fs/minixfs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.c
r6fc5262 re700970 113 113 mfs_read(callid, &call); 114 114 break; 115 case VFS_OUT_OPEN_NODE: 116 mfs_open_node(callid, &call); 117 break; 118 case VFS_OUT_CLOSE: 119 mfs_close(callid, &call); 120 break; 121 case VFS_OUT_WRITE: 122 mfsdebug("write()\n"); 123 break; 115 124 default: 116 125 async_answer_0(callid, ENOTSUP); -
uspace/srv/fs/minixfs/mfs.h
r6fc5262 re700970 153 153 154 154 extern void mfs_stat(ipc_callid_t rid, ipc_call_t *request); 155 extern void mfs_close(ipc_callid_t rid, ipc_call_t *request); 156 extern void mfs_open_node(ipc_callid_t rid, ipc_call_t *request); 155 157 156 158 extern void -
uspace/srv/fs/minixfs/mfs_ops.c
r6fc5262 re700970 761 761 } 762 762 763 void 764 mfs_close(ipc_callid_t rid, ipc_call_t *request) 765 { 766 async_answer_0(rid, EOK); 767 } 768 769 void 770 mfs_open_node(ipc_callid_t rid, ipc_call_t *request) 771 { 772 libfs_open_node(&mfs_libfs_ops, mfs_reg.fs_handle, rid, request); 773 } 774 763 775 /** 764 776 * @}
Note:
See TracChangeset
for help on using the changeset viewer.