Changeset 36d852c in mainline for uspace/srv/vfs/vfs_mount.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_mount.c
r5c786d1 r36d852c 87 87 * system. 88 88 */ 89 if (!ipc_data_ receive(&callid, NULL, &size)) {89 if (!ipc_data_write_receive(&callid, NULL, &size)) { 90 90 ipc_answer_0(callid, EINVAL); 91 91 ipc_answer_0(rid, EINVAL); … … 107 107 */ 108 108 char fs_name[FS_NAME_MAXLEN + 1]; 109 (void) ipc_data_ deliver(callid, fs_name, size);109 (void) ipc_data_write_deliver(callid, fs_name, size); 110 110 fs_name[size] = '\0'; 111 111 … … 123 123 * Now, we want the client to send us the mount point. 124 124 */ 125 if (!ipc_data_ receive(&callid, NULL, &size)) {125 if (!ipc_data_write_receive(&callid, NULL, &size)) { 126 126 ipc_answer_0(callid, EINVAL); 127 127 ipc_answer_0(rid, EINVAL); … … 151 151 * Deliver the mount point. 152 152 */ 153 (void) ipc_data_ deliver(callid, buf, size);153 (void) ipc_data_write_deliver(callid, buf, size); 154 154 155 155 /*
Note:
See TracChangeset
for help on using the changeset viewer.