Changeset ad7a6c9 in mainline for uspace/srv/fs/devfs/devfs.c
- Timestamp:
- 2011-03-30T13:10:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4ae90f9
- Parents:
- 6e50466 (diff), d6b81941 (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/devfs/devfs.c
r6e50466 rad7a6c9 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.