Changeset cd50486 in mainline for uspace/srv/fs/tmpfs/tmpfs.c
- Timestamp:
- 2011-02-06T22:03:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25971d2
- Parents:
- 1110ebd (diff), 960ff451 (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/tmpfs/tmpfs.c
r1110ebd rcd50486 42 42 43 43 #include "tmpfs.h" 44 #include <ipc/ipc.h>45 44 #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 ipc_answer_0(iid, EOK);92 async_answer_0(iid, EOK); 93 93 } 94 94 … … 142 142 break; 143 143 default: 144 ipc_answer_0(callid, ENOTSUP);144 async_answer_0(callid, ENOTSUP); 145 145 break; 146 146 } … … 157 157 } 158 158 159 int vfs_phone = ipc_connect_me_to_blocking(PHONE_NS,SERVICE_VFS, 0, 0);159 int vfs_phone = service_connect_blocking(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.