Changeset cf2af94 in mainline for uspace/srv/fs/ext2/ext2.c
- Timestamp:
- 2011-02-09T11:46:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cb15135a
- Parents:
- a49c4002 (diff), 0b37882 (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/ext2/ext2.c
ra49c4002 rcf2af94 38 38 39 39 #include "ext2.h" 40 #include <ipc/ipc.h>41 40 #include <ipc/services.h> 41 #include <ipc/ns.h> 42 42 #include <async.h> 43 43 #include <errno.h> … … 82 82 * created by IPC_M_CONNECT_TO_ME. 83 83 */ 84 ipc_answer_0(iid, EOK);84 async_answer_0(iid, EOK); 85 85 } 86 86 … … 91 91 92 92 callid = async_get_call(&call); 93 switch (IPC_GET_ METHOD(call)) {93 switch (IPC_GET_IMETHOD(call)) { 94 94 case IPC_M_PHONE_HUNGUP: 95 95 return; … … 134 134 break; 135 135 default: 136 ipc_answer_0(callid, ENOTSUP);136 async_answer_0(callid, ENOTSUP); 137 137 break; 138 138 } … … 147 147 printf(NAME ": HelenOS EXT2 file system server\n"); 148 148 149 vfs_phone = ipc_connect_me_to_blocking(PHONE_NS,SERVICE_VFS, 0, 0);149 vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0); 150 150 if (vfs_phone < EOK) { 151 151 printf(NAME ": failed to connect to VFS\n");
Note:
See TracChangeset
for help on using the changeset viewer.