From: Gabe Black Date: Mon, 8 Oct 2007 00:46:56 +0000 (-0700) Subject: X86: X86 FS compile fix. X-Git-Tag: m5_2.0_beta4~70 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=22196f8885b6eaa47dc150e4a3b6fcb708f5f27f;p=gem5.git X86: X86 FS compile fix. --HG-- extra : convert_revision : bedd4cbab570d4ae84af9e8ead8f61db5c3c01dc --- 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!"); }