Changeset 7f1c620 in mainline for generic/src/ipc/ipc.c
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/ipc/ipc.c
r991779c5 r7f1c620 62 62 static void _ipc_call_init(call_t *call) 63 63 { 64 memsetb(( __address)call, sizeof(*call), 0);64 memsetb((uintptr_t)call, sizeof(*call), 0); 65 65 call->callerbox = &TASK->answerbox; 66 66 call->sender = TASK; … … 186 186 * message and sending it as a normal answer. 187 187 */ 188 void ipc_backsend_err(phone_t *phone, call_t *call, __nativeerr)188 void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err) 189 189 { 190 190 call->data.phone = phone; … … 309 309 * - to distinguish between call and answer, look at call->flags 310 310 */ 311 call_t * ipc_wait_for_call(answerbox_t *box, __u32usec, int flags)311 call_t * ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags) 312 312 { 313 313 call_t *request;
Note:
See TracChangeset
for help on using the changeset viewer.