Changeset c947dda in mainline
- Timestamp:
- 2008-10-25T10:39:49Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 71f1cc1
- Parents:
- 05e69c5
- Location:
- uspace/srv/fs/fat
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.c
r05e69c5 rc947dda 111 111 fat_read(callid, &call); 112 112 break; 113 case VFS_WRITE: 114 fat_write(callid, &call); 115 break; 113 116 default: 114 117 ipc_answer_0(callid, ENOTSUP); -
uspace/srv/fs/fat/fat.h
r05e69c5 rc947dda 224 224 extern void fat_lookup(ipc_callid_t, ipc_call_t *); 225 225 extern void fat_read(ipc_callid_t, ipc_call_t *); 226 extern void fat_write(ipc_callid_t, ipc_call_t *); 226 227 227 228 extern fat_idx_t *fat_idx_get_by_pos(dev_handle_t, fat_cluster_t, unsigned); -
uspace/srv/fs/fat/fat_ops.c
r05e69c5 rc947dda 848 848 } 849 849 850 void fat_write(ipc_callid_t rid, ipc_call_t *request) 851 { 852 ipc_answer_0(rid, ENOTSUP); 853 } 854 850 855 /** 851 856 * @}
Note:
See TracChangeset
for help on using the changeset viewer.