From: Gabe Black Date: Mon, 8 Oct 2007 01:08:17 +0000 (-0700) Subject: X86: Make the Interrupts class complain less. X-Git-Tag: m5_2.0_beta4~66 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=304e4c932af494503ead9395eb08dc8fed1efa9f;p=gem5.git X86: Make the Interrupts class complain less. --HG-- extra : convert_revision : 81d9544e85c90139704ffe4a117983df4bfa3bcd --- 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; }