Changeset 36d852c in mainline for uspace/srv/vfs/vfs_register.c
- Timestamp:
- 2007-12-23T19:45:30Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 654b7db
- Parents:
- 5c786d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_register.c
r5c786d1 r36d852c 165 165 * VFS info structure from the client FS. 166 166 */ 167 if (!ipc_data_ receive(&callid, NULL, &size)) {167 if (!ipc_data_write_receive(&callid, NULL, &size)) { 168 168 /* 169 169 * The client doesn't obey the same protocol as we do. … … 206 206 futex_initialize(&fs_info->phone_futex, 1); 207 207 208 rc = ipc_data_ deliver(callid, &fs_info->vfs_info, size);208 rc = ipc_data_write_deliver(callid, &fs_info->vfs_info, size); 209 209 if (rc != EOK) { 210 210 dprintf("Failed to deliver the VFS info into our AS, rc=%d.\n",
Note:
See TracChangeset
for help on using the changeset viewer.