Changeset d40a8ff in mainline for uspace/lib/libc/generic/ipc.c
- Timestamp:
- 2007-11-24T14:19:10Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9201f47
- Parents:
- 0cc4313
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/ipc.c
r0cc4313 rd40a8ff 647 647 * @param method New method for the forwarded call. 648 648 * @param arg1 New value of the first argument for the forwarded call. 649 * @param mode Flags specifying mode of the forward operation. 649 650 * 650 651 * @return Zero on success or an error code. … … 656 657 */ 657 658 int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method, 658 ipcarg_t arg1) 659 { 660 return __SYSCALL4(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1); 659 ipcarg_t arg1, int mode) 660 { 661 return __SYSCALL5(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1, 662 mode); 661 663 } 662 664
Note:
See TracChangeset
for help on using the changeset viewer.