Subversion Repositories HelenOS

Rev

Rev 3445 | Rev 3476 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3445 Rev 3449
Line 571... Line 571...
571
            SYNCH_FLAGS_NONE);
571
            SYNCH_FLAGS_NONE);
572
        ASSERT((call->flags & IPC_CALL_ANSWERED) ||
572
        ASSERT((call->flags & IPC_CALL_ANSWERED) ||
573
            (call->flags & IPC_CALL_NOTIF));
573
            (call->flags & IPC_CALL_NOTIF));
574
        ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
574
        ASSERT(!(call->flags & IPC_CALL_STATIC_ALLOC));
575
       
575
       
-
 
576
        if (!(call->flags & IPC_CALL_DISCARD_ANSWER))
576
        atomic_dec(&TASK->active_calls);
577
            atomic_dec(&TASK->active_calls);
577
        ipc_call_free(call);
578
        ipc_call_free(call);
578
    }
579
    }
579
}
580
}
580
 
581
 
581
 
582