panic in dummy apic handlers

- as panic can do the same as printf now, let's rather panic when a
  dummy apic interrupt vector handler is hit
This commit is contained in:
Tomas Hruby 2010-10-19 17:07:17 +00:00
parent 2419ab589d
commit e6b1a30a26

View file

@ -88,7 +88,7 @@ lapic_intr_dummy_handler_msg:
#define lapic_intr_dummy_handler(vect) \
pushl $vect; \
push $lapic_intr_dummy_handler_msg; \
call _C_LABEL(printf); \
call _C_LABEL(panic); \
1: jmp 1b; /* never return */
#define LAPIC_INTR_DUMMY_HANDLER(vect) \