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