- Timestamp:
- 2009-01-25T20:10:10Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a68ba8b
- Parents:
- 161ae09
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/syscalls.c
r161ae09 r48daf64 60 60 [SYS_IPC_ANSWER_SLOW] = { "ipc_answer_slow", 2, V_ERRNO }, 61 61 [SYS_IPC_FORWARD_FAST] = { "ipc_forward_fast", 6, V_ERRNO }, 62 [SYS_IPC_FORWARD_SLOW] = { "ipc_forward_slow", 3, V_ERRNO }, 62 63 [SYS_IPC_WAIT] = { "ipc_wait_for_call", 3, V_HASH }, 63 64 [SYS_IPC_HANGUP] = { "ipc_hangup", 1, V_ERRNO }, -
uspace/lib/libc/generic/ipc.c
r161ae09 r48daf64 667 667 } 668 668 669 670 int ipc_forward_slow(ipc_callid_t callid, int phoneid, int method, 671 ipcarg_t arg1, ipcarg_t arg2, ipcarg_t arg3, ipcarg_t arg4, ipcarg_t arg5, 672 int mode) 673 { 674 ipc_call_t data; 675 676 IPC_SET_METHOD(data, method); 677 IPC_SET_ARG1(data, arg1); 678 IPC_SET_ARG2(data, arg2); 679 IPC_SET_ARG3(data, arg3); 680 IPC_SET_ARG4(data, arg4); 681 IPC_SET_ARG5(data, arg5); 682 683 return __SYSCALL3(SYS_IPC_FORWARD_SLOW, callid, (sysarg_t) &data, mode); 684 } 685 669 686 /** Wrapper for making IPC_M_SHARE_IN calls. 670 687 * -
uspace/lib/libc/include/ipc/ipc.h
r161ae09 r48daf64 253 253 extern int ipc_unregister_irq(int, int); 254 254 extern int ipc_forward_fast(ipc_callid_t, int, int, ipcarg_t, ipcarg_t, int); 255 extern int ipc_forward_slow(ipc_callid_t, int, int, ipcarg_t, ipcarg_t, 256 ipcarg_t, ipcarg_t, ipcarg_t, int); 255 257 256 258
Note:
See TracChangeset
for help on using the changeset viewer.