projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
847a18a
)
X86: Make the Interrupts class complain less.
author
Gabe Black
<gblack@eecs.umich.edu>
Mon, 8 Oct 2007 01:08:17 +0000
(18:08 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Mon, 8 Oct 2007 01:08:17 +0000
(18:08 -0700)
--HG--
extra : convert_revision :
81d9544e85c90139704ffe4a117983df4bfa3bcd
src/arch/x86/interrupts.hh
patch
|
blob
|
history
diff --git
a/src/arch/x86/interrupts.hh
b/src/arch/x86/interrupts.hh
index 0ae68618a6bcd2b07a2b91d7f548268ca6ac63b1..cf9109e2242d89a52f8378bd2e8bb38a4fdaec73 100644
(file)
--- 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;
}