diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-08 16:15:20 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-08 16:15:20 -0500 |
commit | 5b90922ad59189f5967dc97a00bbfead062f4ba3 (patch) | |
tree | 7cbfb281316eb937cf3186d8653cc69c44188a04 /src/arch/mips/stacktrace.hh | |
parent | 42c73c6a9215a46ec83e31e03aef9eddc281336f (diff) | |
download | gem5-5b90922ad59189f5967dc97a00bbfead062f4ba3.tar.xz |
Put the MIPS stacktrace into the MipsISA namespace to fit with Alpha and SPARC.
--HG--
extra : convert_revision : 86f5585fe9ceb2ee30836d35384ebcddc1357c2a
Diffstat (limited to 'src/arch/mips/stacktrace.hh')
-rw-r--r-- | src/arch/mips/stacktrace.hh | 5 |
1 files changed, 5 insertions, 0 deletions
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__ |