From: Gabe Black Date: Wed, 8 Nov 2006 21:15:20 +0000 (-0500) Subject: Put the MIPS stacktrace into the MipsISA namespace to fit with Alpha and SPARC. X-Git-Tag: m5_2.0_beta2~53^2~7 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b90922ad59189f5967dc97a00bbfead062f4ba3;p=gem5.git Put the MIPS stacktrace into the MipsISA namespace to fit with Alpha and SPARC. --HG-- extra : convert_revision : 86f5585fe9ceb2ee30836d35384ebcddc1357c2a --- diff --git a/src/arch/mips/stacktrace.hh b/src/arch/mips/stacktrace.hh index f9e092dbd..c854f63ca 100644 --- a/src/arch/mips/stacktrace.hh +++ b/src/arch/mips/stacktrace.hh @@ -37,6 +37,9 @@ class ThreadContext; class StackTrace; +namespace MipsISA +{ + class ProcessInfo { private: @@ -118,4 +121,6 @@ StackTrace::trace(ThreadContext *tc, StaticInstPtr inst) return true; } +} + #endif // __ARCH_MIPS_STACKTRACE_HH__