Changeset 51a7dc1 in mainline
- Timestamp:
- 2006-04-29T22:17:17Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e00b8a
- Parents:
- 5626277
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/interrupt.c
r5626277 r51a7dc1 103 103 } 104 104 105 #include <print.h>106 105 static void ipc_int(int n, istate_t *istate) 107 106 { -
generic/src/ipc/ipc.c
r5626277 r51a7dc1 436 436 while (atomic_get(&task->active_calls)) { 437 437 call = ipc_wait_for_call(&task->answerbox, 0); 438 ASSERT( call->flags & IPC_CALL_ANSWERED);438 ASSERT((call->flags & IPC_CALL_ANSWERED) || (call->flags & IPC_CALL_NOTIF)); 439 439 ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC)); 440 440
Note:
See TracChangeset
for help on using the changeset viewer.