Changes in uspace/srv/fs/tmpfs/tmpfs.c [3c11713:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r3c11713 rffa2c8ef 42 42 43 43 #include "tmpfs.h" 44 #include <ipc/ipc.h>45 44 #include <ipc/services.h> 45 #include <ipc/ns.h> 46 46 #include <async.h> 47 47 #include <errno.h> … … 57 57 vfs_info_t tmpfs_vfs_info = { 58 58 .name = NAME, 59 .concurrent_read_write = false, 60 .write_retains_size = false, 59 61 }; 60 62 … … 88 90 * created by IPC_M_CONNECT_TO_ME. 89 91 */ 90 ipc_answer_0(iid, EOK);92 async_answer_0(iid, EOK); 91 93 } 92 94 … … 97 99 98 100 callid = async_get_call(&call); 99 switch (IPC_GET_ METHOD(call)) {101 switch (IPC_GET_IMETHOD(call)) { 100 102 case IPC_M_PHONE_HUNGUP: 101 103 return; … … 140 142 break; 141 143 default: 142 ipc_answer_0(callid, ENOTSUP);144 async_answer_0(callid, ENOTSUP); 143 145 break; 144 146 } … … 155 157 } 156 158 157 int vfs_phone = ipc_connect_me_to_blocking(PHONE_NS,SERVICE_VFS, 0, 0);159 int vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0); 158 160 if (vfs_phone < EOK) { 159 161 printf(NAME ": Unable to connect to VFS\n");
Note:
See TracChangeset
for help on using the changeset viewer.