summaryrefslogtreecommitdiff
path: root/src/arch/x86/interrupts.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-07 18:08:17 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-07 18:08:17 -0700
commit304e4c932af494503ead9395eb08dc8fed1efa9f (patch)
tree50081b1086a48b9f94cb1c8673427e370d65a04f /src/arch/x86/interrupts.hh
parent847a18ad48445a3b4f8fa9b8f8c2594a8a952f84 (diff)
downloadgem5-304e4c932af494503ead9395eb08dc8fed1efa9f.tar.xz
X86: Make the Interrupts class complain less.
--HG-- extra : convert_revision : 81d9544e85c90139704ffe4a117983df4bfa3bcd
Diffstat (limited to 'src/arch/x86/interrupts.hh')
-rw-r--r--src/arch/x86/interrupts.hh4
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;
}