Changes in uspace/srv/fs/tmpfs/tmpfs.c [ffa2c8ef:228e490] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
rffa2c8ef r228e490 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> … … 90 90 * created by IPC_M_CONNECT_TO_ME. 91 91 */ 92 async_answer_0(iid, EOK);92 ipc_answer_0(iid, EOK); 93 93 } 94 94 … … 142 142 break; 143 143 default: 144 async_answer_0(callid, ENOTSUP);144 ipc_answer_0(callid, ENOTSUP); 145 145 break; 146 146 } … … 157 157 } 158 158 159 int vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0);159 int vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0); 160 160 if (vfs_phone < EOK) { 161 161 printf(NAME ": Unable to connect to VFS\n");
Note:
See TracChangeset
for help on using the changeset viewer.