Ignore:
File:
1 edited

Legend:

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

    r4b0206c r33f86a3  
    3434
    3535#include <arch/interrupt.h>
     36#include <assert.h>
    3637#include <syscall/syscall.h>
    3738#include <print.h>
     
    8485       
    8586        printf("esi=%0#10" PRIx32 "\tedi=%0#10" PRIx32 "\t"
    86             "ebp=%0#10" PRIx32 "\tesp=%0#10" PRIx32 "\n",
     87            "ebp=%0#10" PRIx32 "\tesp=%0#10" PRIxn "\n",
    8788            istate->esi, istate->edi, istate->ebp,
    8889            istate_from_uspace(istate) ? istate->esp :
     
    183184static void irq_interrupt(unsigned int n, istate_t *istate __attribute__((unused)))
    184185{
    185         ASSERT(n >= IVT_IRQBASE);
     186        assert(n >= IVT_IRQBASE);
    186187       
    187188        unsigned int inum = n - IVT_IRQBASE;
    188189        bool ack = false;
    189         ASSERT(inum < IRQ_COUNT);
    190         ASSERT((inum != IRQ_PIC_SPUR) && (inum != IRQ_PIC1));
     190        assert(inum < IRQ_COUNT);
     191        assert((inum != IRQ_PIC_SPUR) && (inum != IRQ_PIC1));
    191192       
    192193        irq_t *irq = irq_dispatch_and_lock(inum);
Note: See TracChangeset for help on using the changeset viewer.