Changeset 6d57e1c in mainline for uspace/srv/fs/exfat/exfat.c
- Timestamp:
- 2011-06-27T19:39:06Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 620a367
- Parents:
- efa8ed93
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat.c
refa8ed93 r6d57e1c 98 98 return; 99 99 case VFS_OUT_MOUNTED: 100 /* exfat_mounted(callid, &call); */ 101 async_answer_0(callid, ENOTSUP); 100 exfat_mounted(callid, &call); 102 101 break; 103 102 case VFS_OUT_MOUNT: 104 /* exfat_mount(callid, &call); */ 105 async_answer_0(callid, ENOTSUP); 103 exfat_mount(callid, &call); 106 104 break; 107 105 case VFS_OUT_UNMOUNTED: 108 /* exfat_unmounted(callid, &call); */ 109 async_answer_0(callid, ENOTSUP); 106 exfat_unmounted(callid, &call); 110 107 break; 111 108 case VFS_OUT_UNMOUNT: 112 /* exfat_unmount(callid, &call); */ 113 async_answer_0(callid, ENOTSUP); 109 exfat_unmount(callid, &call); 114 110 break; 115 111 case VFS_OUT_LOOKUP:
Note:
See TracChangeset
for help on using the changeset viewer.