diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-07 05:36:54 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-07 05:36:54 -0500 |
commit | 4bfb8547bbdee3bd0ec23ae067ff04fd5e07f4be (patch) | |
tree | f8e71b2820b19c8520fbc7e705368e67996c70b2 /src/cpu/checker/thread_context.hh | |
parent | 54241565167bcab9fd3ae47010e46e7e8ad04826 (diff) | |
download | gem5-4bfb8547bbdee3bd0ec23ae067ff04fd5e07f4be.tar.xz |
Moved the switched version of kernel_stats.hh back to kern, and moved the base kernel_stats to base_kernel_stats
--HG--
extra : convert_revision : 2a010d2eb7ea2586ff063b99b8bcde6eb1e8e017
Diffstat (limited to 'src/cpu/checker/thread_context.hh')
-rw-r--r-- | src/cpu/checker/thread_context.hh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/cpu/checker/thread_context.hh b/src/cpu/checker/thread_context.hh index b46031167..cf36d8392 100644 --- a/src/cpu/checker/thread_context.hh +++ b/src/cpu/checker/thread_context.hh @@ -37,8 +37,10 @@ #include "cpu/thread_context.hh" class EndQuiesceEvent; -namespace Kernel { - class Statistics; +namespace TheISA { + namespace Kernel { + class Statistics; + }; }; /** @@ -91,7 +93,8 @@ class CheckerThreadContext : public ThreadContext TheISA::DTB *getDTBPtr() { return actualTC->getDTBPtr(); } - Kernel::Statistics *getKernelStats() { return actualTC->getKernelStats(); } + TheISA::Kernel::Statistics *getKernelStats() + { return actualTC->getKernelStats(); } FunctionalPort *getPhysPort() { return actualTC->getPhysPort(); } |