- Timestamp:
- 2007-11-22T09:09:04Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0cc4313
- Parents:
- b74959bd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/ipc.c
rb74959bd r8498915 321 321 IPC_SET_ARG3(call->u.msg.data, arg3); 322 322 IPC_SET_ARG4(call->u.msg.data, arg4); 323 /* 324 * To achieve deterministic behavior, we always zero out the 325 * arguments that are beyond the limits of the fast version. 326 */ 327 IPC_SET_ARG5(call->u.msg.data, 0); 323 328 } 324 329 ipc_finish_async(callid, phoneid, call, can_preempt); … … 436 441 while (!list_empty(&queued_calls)) { 437 442 call = list_get_instance(queued_calls.next, async_call_t, list); 438 callid = _ipc_call_async(call->u.msg.phoneid, &call->u.msg.data); 443 callid = _ipc_call_async(call->u.msg.phoneid, 444 &call->u.msg.data); 439 445 if (callid == IPC_CALLRET_TEMPORARY) { 440 446 break; … … 646 652 * For non-system methods, the old method and arg1 are rewritten by the new 647 653 * values. For system methods, the new method and arg1 are written to the old 648 * arg1 and arg2, respectivelly. 649 */ 650 int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method, ipcarg_t arg1) 654 * arg1 and arg2, respectivelly. Calls with immutable methods are forwarded 655 * verbatim. 656 */ 657 int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method, 658 ipcarg_t arg1) 651 659 { 652 660 return __SYSCALL4(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1);
Note:
See TracChangeset
for help on using the changeset viewer.