diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-07 17:46:56 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-07 17:46:56 -0700 |
commit | 22196f8885b6eaa47dc150e4a3b6fcb708f5f27f (patch) | |
tree | 83e46a3dfe46e387fe4c2f43749510ebd58d4f0c /src/arch | |
parent | bd5a88ba4306e74933e70b569a1f61462ebe8a77 (diff) | |
download | gem5-22196f8885b6eaa47dc150e4a3b6fcb708f5f27f.tar.xz |
X86: X86 FS compile fix.
--HG--
extra : convert_revision : bedd4cbab570d4ae84af9e8ead8f61db5c3c01dc
Diffstat (limited to 'src/arch')
-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!"); } |