Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2622 → Rev 2620

/trunk/kernel/generic/src/ipc/sysipc.c
537,7 → 537,6
* @param phoneid Phone handle to use for forwarding.
* @param method New method to use for the forwarded call.
* @param arg1 New value of the first argument for the forwarded call.
* @param mode Flags that specify mode of the forward operation.
*
* @return Return 0 on succes, otherwise return an error code.
*
547,12 → 546,11
* respectively. Also note there is a set of immutable methods, for which the
* new method and argument is not set and these values are ignored.
*
* Warning: When implementing support for changing additional payload
* arguments, make sure that ARG3 is not rewritten for certain
* system IPC
* Warning: If implementing non-fast version, make sure that
* ARG3 is not rewritten for certain system IPC
*/
unative_t sys_ipc_forward_fast(unative_t callid, unative_t phoneid,
unative_t method, unative_t arg1, int mode)
unative_t method, unative_t arg1)
{
call_t *call;
phone_t *phone;
593,7 → 591,7
}
}
 
return ipc_forward(call, phone, &TASK->answerbox, mode);
return ipc_forward(call, phone, &TASK->answerbox);
}
 
/** Answer an IPC call - fast version.