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:
parent
2419ab589d
commit
e6b1a30a26
1 changed files with 1 additions and 1 deletions
|
@ -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) \
|
||||
|
|
Loading…
Reference in a new issue