Changeset 52a79081 in mainline
- Timestamp:
- 2011-08-02T20:24:45Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a33f0a6
- Parents:
- 6f60727
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat.c
r6f60727 r52a79081 113 113 break; 114 114 case VFS_OUT_READ: 115 /* exfat_read(callid, &call); */ 116 async_answer_0(callid, ENOTSUP); 115 exfat_read(callid, &call); 117 116 break; 118 117 case VFS_OUT_WRITE: … … 125 124 break; 126 125 case VFS_OUT_STAT: 127 /* exfat_stat(callid, &call); */ 128 async_answer_0(callid, ENOTSUP); 126 exfat_stat(callid, &call); 129 127 break; 130 128 case VFS_OUT_CLOSE: 131 /* exfat_close(callid, &call); */ 132 async_answer_0(callid, ENOTSUP); 129 exfat_close(callid, &call); 133 130 break; 134 131 case VFS_OUT_DESTROY: … … 137 134 break; 138 135 case VFS_OUT_OPEN_NODE: 139 /* exfat_open_node(callid, &call); */ 140 async_answer_0(callid, ENOTSUP); 136 exfat_open_node(callid, &call); 141 137 break; 142 138 case VFS_OUT_SYNC: 143 /* exfat_sync(callid, &call); */ 144 async_answer_0(callid, ENOTSUP); 139 exfat_sync(callid, &call); 145 140 break; 146 141 default:
Note:
See TracChangeset
for help on using the changeset viewer.