diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-04-19 02:53:00 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-04-19 02:53:00 -0700 |
commit | d277feb925bae400fb264656c4b851f1f2db7707 (patch) | |
tree | bc86f4b8cb52888958aca1ffbf7f5193d5eda3a0 /src/arch/x86/faults.hh | |
parent | a340b214cfe60dd6272b0f74a3a2a2807b850a6a (diff) | |
download | gem5-d277feb925bae400fb264656c4b851f1f2db7707.tar.xz |
X86: Implement the INIT IPI.
Diffstat (limited to 'src/arch/x86/faults.hh')
-rw-r--r-- | src/arch/x86/faults.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/x86/faults.hh b/src/arch/x86/faults.hh index dbfb8d4d0..54b92bd47 100644 --- a/src/arch/x86/faults.hh +++ b/src/arch/x86/faults.hh @@ -410,11 +410,12 @@ namespace X86ISA class InitInterrupt : public X86Interrupt { - uint8_t vector; public: InitInterrupt(uint8_t _vector) : X86Interrupt("INIT Interrupt", "#INIT", _vector) {} + + void invoke(ThreadContext * tc); }; class SoftwareInterrupt : public X86Interrupt |