Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/interrupt.c

    r33f86a3 r4b0206c  
    3434
    3535#include <arch/interrupt.h>
    36 #include <assert.h>
    3736#include <syscall/syscall.h>
    3837#include <print.h>
     
    8584       
    8685        printf("esi=%0#10" PRIx32 "\tedi=%0#10" PRIx32 "\t"
    87             "ebp=%0#10" PRIx32 "\tesp=%0#10" PRIxn "\n",
     86            "ebp=%0#10" PRIx32 "\tesp=%0#10" PRIx32 "\n",
    8887            istate->esi, istate->edi, istate->ebp,
    8988            istate_from_uspace(istate) ? istate->esp :
     
    184183static void irq_interrupt(unsigned int n, istate_t *istate __attribute__((unused)))
    185184{
    186         assert(n >= IVT_IRQBASE);
     185        ASSERT(n >= IVT_IRQBASE);
    187186       
    188187        unsigned int inum = n - IVT_IRQBASE;
    189188        bool ack = false;
    190         assert(inum < IRQ_COUNT);
    191         assert((inum != IRQ_PIC_SPUR) && (inum != IRQ_PIC1));
     189        ASSERT(inum < IRQ_COUNT);
     190        ASSERT((inum != IRQ_PIC_SPUR) && (inum != IRQ_PIC1));
    192191       
    193192        irq_t *irq = irq_dispatch_and_lock(inum);
Note: See TracChangeset for help on using the changeset viewer.