Changes in uspace/srv/fs/devfs/devfs.c [228e490:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/devfs.c
r228e490 rffa2c8ef 40 40 41 41 #include <stdio.h> 42 #include <ipc/ipc.h>43 42 #include <ipc/services.h> 43 #include <ipc/ns.h> 44 44 #include <async.h> 45 45 #include <errno.h> … … 62 62 { 63 63 if (iid) 64 ipc_answer_0(iid, EOK);64 async_answer_0(iid, EOK); 65 65 66 66 while (true) { … … 111 111 break; 112 112 default: 113 ipc_answer_0(callid, ENOTSUP);113 async_answer_0(callid, ENOTSUP); 114 114 break; 115 115 } … … 126 126 } 127 127 128 int vfs_phone = ipc_connect_me_to_blocking(PHONE_NS,SERVICE_VFS, 0, 0);128 int vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0); 129 129 if (vfs_phone < EOK) { 130 130 printf(NAME ": Unable to connect to VFS\n");
Note:
See TracChangeset
for help on using the changeset viewer.