diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/interrupts.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/arch/x86/interrupts.hh b/src/arch/x86/interrupts.hh index 0ae68618a..cf9109e22 100644 --- a/src/arch/x86/interrupts.hh +++ b/src/arch/x86/interrupts.hh @@ -85,7 +85,7 @@ class Interrupts void clear(int int_num, int index) { - panic("Interrupts::clear unimplemented!\n"); + warn("Interrupts::clear unimplemented!\n"); } void clear_all() @@ -95,13 +95,11 @@ class Interrupts bool check_interrupts(ThreadContext * tc) const { - panic("Interrupts::check_interrupts unimplemented!\n"); return false; } Fault getInterrupt(ThreadContext * tc) { - panic("Interrupts::getInterrupt unimplemented!\n"); return NoFault; } |