Changeset bd5a663 in mainline for generic/src/ipc/sysipc.c
- Timestamp:
- 2006-05-17T14:03:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 59477e3
- Parents:
- bdb9ea8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/ipc/sysipc.c
rbdb9ea8 rbd5a663 469 469 * 470 470 * @param calldata Pointer to buffer where the call/answer data is stored 471 * @param flags 471 * @param usec Timeout. See waitq_sleep_timeout() for explanation. 472 * @param nonblocking See waitq_sleep_timeout() for explanation. 473 * 472 474 * @return Callid, if callid & 1, then the call is answer 473 475 */ 474 __native sys_ipc_wait_for_call(ipc_data_t *calldata, __ native flags)476 __native sys_ipc_wait_for_call(ipc_data_t *calldata, __u32 usec, int nonblocking) 475 477 { 476 478 call_t *call; 477 479 478 480 restart: 479 call = ipc_wait_for_call(&TASK->answerbox, flags);481 call = ipc_wait_for_call(&TASK->answerbox, usec, nonblocking); 480 482 if (!call) 481 483 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.