X86: Make the Interrupts class complain less.
--HG-- extra : convert_revision : 81d9544e85c90139704ffe4a117983df4bfa3bcd
This commit is contained in:
parent
847a18ad48
commit
304e4c932a
1 changed files with 1 additions and 3 deletions
|
@ -85,7 +85,7 @@ class Interrupts
|
||||||
|
|
||||||
void clear(int int_num, int index)
|
void clear(int int_num, int index)
|
||||||
{
|
{
|
||||||
panic("Interrupts::clear unimplemented!\n");
|
warn("Interrupts::clear unimplemented!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void clear_all()
|
void clear_all()
|
||||||
|
@ -95,13 +95,11 @@ class Interrupts
|
||||||
|
|
||||||
bool check_interrupts(ThreadContext * tc) const
|
bool check_interrupts(ThreadContext * tc) const
|
||||||
{
|
{
|
||||||
panic("Interrupts::check_interrupts unimplemented!\n");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
Fault getInterrupt(ThreadContext * tc)
|
Fault getInterrupt(ThreadContext * tc)
|
||||||
{
|
{
|
||||||
panic("Interrupts::getInterrupt unimplemented!\n");
|
|
||||||
return NoFault;
|
return NoFault;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue