Changes in uspace/lib/hound/src/protocol.c [cf13b17:25a179e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/src/protocol.c
rcf13b17 r25a179e 115 115 * @param name Valid string identifier 116 116 * @param record True if the application context wishes to receive data. 117 * @return Valid ID on success, Error code on failure. 118 */ 119 hound_context_id_t hound_service_register_context(hound_sess_t *sess, 120 const char *name, bool record) 117 * 118 * @param[out] id Return context ID. 119 * 120 * @return EOK on success, Error code on failure. 121 */ 122 int hound_service_register_context(hound_sess_t *sess, 123 const char *name, bool record, hound_context_id_t *id) 121 124 { 122 125 assert(sess); … … 134 137 135 138 if (ret == EOK) 136 async_wait_for(mid, (sysarg_t *)&ret);139 async_wait_for(mid, &ret); 137 140 138 141 async_exchange_end(exch); 139 return ret == EOK ? (hound_context_id_t)IPC_GET_ARG1(call) : ret; 142 if (ret == EOK) { 143 *id = (hound_context_id_t)IPC_GET_ARG1(call); 144 } 145 146 return ret; 140 147 } 141 148 … … 182 189 ipc_call_t res_call; 183 190 aid_t mid = async_send_3(exch, IPC_M_HOUND_GET_LIST, flags, *count, 184 (bool)connection, &res_call);191 connection != NULL, &res_call); 185 192 186 193 int ret = EOK; … … 190 197 191 198 if (ret == EOK) 192 async_wait_for(mid, (sysarg_t*)&ret);199 async_wait_for(mid, &ret); 193 200 194 201 if (ret != EOK) { … … 257 264 if (ret == EOK) 258 265 ret = async_data_write_start(exch, sink, str_size(sink)); 259 async_wait_for(id, (sysarg_t*)&ret);266 async_wait_for(id, &ret); 260 267 async_exchange_end(exch); 261 268 return ret; … … 283 290 if (ret == EOK) 284 291 ret = async_data_write_start(exch, sink, str_size(sink)); 285 async_wait_for(id, (sysarg_t*)&ret);292 async_wait_for(id, &ret); 286 293 async_exchange_end(exch); 287 294 return ENOTSUP;
Note:
See TracChangeset
for help on using the changeset viewer.