Changeset 9a1b20c in mainline for uspace/lib/libc/generic/ipc.c
- Timestamp:
- 2008-09-17T12:16:27Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fb9b0b0
- Parents:
- 06a195bc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/ipc.c
r06a195bc r9a1b20c 910 910 return ipc_answer_2(callid, EOK, (ipcarg_t) dst, (ipcarg_t) size); 911 911 } 912 913 #include <kernel/syscall/sysarg64.h> 914 /** Connect to a task specified by id. 915 */ 916 int ipc_connect_kbox(task_id_t id) 917 { 918 sysarg64_t arg; 919 920 arg.value = (unsigned long long) id; 921 922 return __SYSCALL1(SYS_IPC_CONNECT_KBOX, (sysarg_t) &arg); 923 } 912 924 913 925 /** @}
Note:
See TracChangeset
for help on using the changeset viewer.