Changeset 1787e527 in mainline for uspace/srv/ns/service.c
- Timestamp:
- 2009-11-16T21:22:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ebdf94
- Parents:
- fcbd1be (diff), 9c70ed6 (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/ns/service.c
rfcbd1be r1787e527 156 156 157 157 hashed_service_t *hs = hash_table_get_instance(link, hashed_service_t, link); 158 ipcarg_t retval = ipc_forward_fast(pr->callid, hs->phone, 159 pr->arg2, pr->arg3, 0, IPC_FF_NONE); 160 161 if (!(pr->callid & IPC_CALLID_NOTIFICATION)) 162 ipc_answer_0(pr->callid, retval); 158 (void) ipc_forward_fast(pr->callid, hs->phone, pr->arg2, 159 pr->arg3, 0, IPC_FF_NONE); 163 160 164 161 list_remove(cur); … … 242 239 243 240 hashed_service_t *hs = hash_table_get_instance(link, hashed_service_t, link); 244 retval =ipc_forward_fast(callid, hs->phone, IPC_GET_ARG2(*call),241 (void) ipc_forward_fast(callid, hs->phone, IPC_GET_ARG2(*call), 245 242 IPC_GET_ARG3(*call), 0, IPC_FF_NONE); 243 return; 246 244 247 245 out:
Note:
See TracChangeset
for help on using the changeset viewer.