Changeset b5e68c8 in mainline for uspace/srv/fs/fat/fat.c
- Timestamp:
- 2011-05-12T16:49:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f36787d7
- Parents:
- e80329d6 (diff), 750636a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.c
re80329d6 rb5e68c8 38 38 39 39 #include "fat.h" 40 #include <ipc/ipc.h>41 40 #include <ipc/services.h> 41 #include <ipc/ns.h> 42 42 #include <async.h> 43 43 #include <errno.h> … … 52 52 vfs_info_t fat_vfs_info = { 53 53 .name = NAME, 54 .concurrent_read_write = false, 55 .write_retains_size = false, 54 56 }; 55 57 … … 82 84 * created by IPC_M_CONNECT_TO_ME. 83 85 */ 84 ipc_answer_0(iid, EOK);86 async_answer_0(iid, EOK); 85 87 } 86 88 … … 91 93 92 94 callid = async_get_call(&call); 93 switch (IPC_GET_ METHOD(call)) {95 switch (IPC_GET_IMETHOD(call)) { 94 96 case IPC_M_PHONE_HUNGUP: 95 97 return; … … 134 136 break; 135 137 default: 136 ipc_answer_0(callid, ENOTSUP);138 async_answer_0(callid, ENOTSUP); 137 139 break; 138 140 } … … 151 153 goto err; 152 154 153 vfs_phone = ipc_connect_me_to_blocking(PHONE_NS,SERVICE_VFS, 0, 0);155 vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0); 154 156 if (vfs_phone < EOK) { 155 157 printf(NAME ": failed to connect to VFS\n");
Note:
See TracChangeset
for help on using the changeset viewer.