diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-07 17:52:36 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-07 17:52:36 -0700 |
commit | 847a18ad48445a3b4f8fa9b8f8c2594a8a952f84 (patch) | |
tree | 093a95a648bacbe0a588a9bc0be921285072321b /src/arch/x86/interrupts.hh | |
parent | e540c37282467e62ff457fdd39ca2f584fdfd10c (diff) | |
download | gem5-847a18ad48445a3b4f8fa9b8f8c2594a8a952f84.tar.xz |
X86: Adjust the config scripts for x86 fs.
--HG--
extra : convert_revision : 36ed22b50066f54be0e51c3419babc07dd218e10
Diffstat (limited to 'src/arch/x86/interrupts.hh')
-rw-r--r-- | src/arch/x86/interrupts.hh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/arch/x86/interrupts.hh b/src/arch/x86/interrupts.hh index 614909f73..0ae68618a 100644 --- a/src/arch/x86/interrupts.hh +++ b/src/arch/x86/interrupts.hh @@ -74,56 +74,56 @@ class Interrupts int InterruptLevel(uint64_t softint) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::InterruptLevel unimplemented!\n"); return 0; } void post(int int_num, int index) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::post unimplemented!\n"); } void clear(int int_num, int index) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::clear unimplemented!\n"); } void clear_all() { - panic("Interrupts don't work on x86!\n"); + warn("Interrupts::clear_all unimplemented!\n"); } bool check_interrupts(ThreadContext * tc) const { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::check_interrupts unimplemented!\n"); return false; } Fault getInterrupt(ThreadContext * tc) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::getInterrupt unimplemented!\n"); return NoFault; } void updateIntrInfo(ThreadContext * tc) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::updateIntrInfo unimplemented!\n"); } uint64_t get_vec(int int_num) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::get_vec unimplemented!\n"); return 0; } void serialize(std::ostream & os) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::serialize unimplemented!\n"); } void unserialize(Checkpoint * cp, const std::string & section) { - panic("Interrupts don't work on x86!\n"); + panic("Interrupts::unserialize unimplemented!\n"); } }; |