Changeset 51a7dc1 in mainline


Ignore:
Timestamp:
2006-04-29T22:17:17Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0e00b8a
Parents:
5626277
Message:

Small fixes.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/interrupt.c

    r5626277 r51a7dc1  
    103103}
    104104
    105 #include <print.h>
    106105static void ipc_int(int n, istate_t *istate)
    107106{
  • generic/src/ipc/ipc.c

    r5626277 r51a7dc1  
    436436        while (atomic_get(&task->active_calls)) {
    437437                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));
    439439                ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC));
    440440               
Note: See TracChangeset for help on using the changeset viewer.