diff options
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 |