Changeset 5106e98 in mainline for libipc/generic/ipc.c
- Timestamp:
- 2006-03-16T00:26:33Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 69cdeec
- Parents:
- 7e44122
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libipc/generic/ipc.c
r7e44122 r5106e98 118 118 if (!call) { 119 119 callback(private, ENOMEM, NULL); 120 return; 120 121 } 121 122 … … 222 223 * IPC_WAIT_NONBLOCKING 223 224 */ 224 i nt ipc_wait_for_call(ipc_call_t *call, int flags)225 ipc_callid_t ipc_wait_for_call(ipc_call_t *call, int flags) 225 226 { 226 227 ipc_callid_t callid; … … 237 238 return callid; 238 239 } 240 241 /** Ask destination to do a callback connection */ 242 int ipc_connect_to_me(int phoneid, int arg1, int arg2, 243 unsigned long long *taskid) 244 { 245 return __SYSCALL4(SYS_IPC_CONNECT_TO_ME, phoneid, arg1, arg2, 246 (sysarg_t) taskid); 247 }
Note:
See TracChangeset
for help on using the changeset viewer.