Changeset b74959bd in mainline for uspace/srv/rd/rd.c
- Timestamp:
- 2007-11-20T21:33:32Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8498915
- Parents:
- 3209923
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/rd/rd.c
r3209923 rb74959bd 91 91 * This is the answer to the call that opened the connection. 92 92 */ 93 ipc_answer_ fast(iid, EHANGUP, 0, 0);93 ipc_answer_0(iid, EHANGUP); 94 94 return; 95 95 } else { … … 98 98 * Return supported block size as ARG1. 99 99 */ 100 ipc_answer_ fast(iid, EOK, BLOCK_SIZE, 0);100 ipc_answer_1(iid, EOK, BLOCK_SIZE); 101 101 } 102 102 … … 111 111 * block. 112 112 */ 113 ipc_answer_ fast(callid, EOK, (uintptr_t) fs_va, 0);113 ipc_answer_1(callid, EOK, (uintptr_t) fs_va); 114 114 } else { 115 115 /* … … 117 117 * Close the connection. 118 118 */ 119 ipc_answer_ fast(callid, EHANGUP, 0, 0);119 ipc_answer_0(callid, EHANGUP); 120 120 return; 121 121 } … … 126 126 * Close the connection. 127 127 */ 128 ipc_answer_ fast(callid, EHANGUP, 0, 0);128 ipc_answer_0(callid, EHANGUP); 129 129 return; 130 130 } … … 138 138 * Answer the message and exit the fibril. 139 139 */ 140 ipc_answer_ fast(callid, EOK, 0, 0);140 ipc_answer_0(callid, EOK); 141 141 return; 142 142 case RD_READ_BLOCK: … … 178 178 break; 179 179 } 180 ipc_answer_ fast(callid, retval, 0, 0);180 ipc_answer_0(callid, retval); 181 181 } 182 182 }
Note:
See TracChangeset
for help on using the changeset viewer.