diff options
Diffstat (limited to 'src/arch/x86/faults.cc')
-rw-r--r-- | src/arch/x86/faults.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/faults.cc b/src/arch/x86/faults.cc index 124dcf41e..69cbadc93 100644 --- a/src/arch/x86/faults.cc +++ b/src/arch/x86/faults.cc @@ -98,17 +98,17 @@ namespace X86ISA { #if FULL_SYSTEM - void X86Trap::invoke(TheeadContext * tc) + void X86Trap::invoke(ThreadContext * tc) { panic("X86 faults are not implemented!"); } - void X86Abort::invoke(TheeadContext * tc) + void X86Abort::invoke(ThreadContext * tc) { panic("X86 faults are not implemented!"); } - void X86Interrupt::invoke(TheeadContext * tc) + void X86Interrupt::invoke(ThreadContext * tc) { panic("X86 faults are not implemented!"); } |