diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:39 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:39 -0400 |
commit | e8b7df072b17bfd86b294fc47cf29d3d013f646a (patch) | |
tree | 59013427454f915059addd33967b774f7edfeaa0 /src/cpu/inorder/thread_context.cc | |
parent | d71b95d84d5aac6926f6cd4c7faca20f2c43d8dc (diff) | |
download | gem5-e8b7df072b17bfd86b294fc47cf29d3d013f646a.tar.xz |
inorder: make InOrder CPU FS compilable/visible
make syscall a SE mode only functionality
copy over basic FS functions (hwrei) to make FS compile
Diffstat (limited to 'src/cpu/inorder/thread_context.cc')
-rw-r--r-- | src/cpu/inorder/thread_context.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/inorder/thread_context.cc b/src/cpu/inorder/thread_context.cc index f86e75939..af6e18291 100644 --- a/src/cpu/inorder/thread_context.cc +++ b/src/cpu/inorder/thread_context.cc @@ -152,8 +152,8 @@ void InOrderThreadContext::regStats(const std::string &name) { #if FULL_SYSTEM - //thread->kernelStats = new Kernel::Statistics(cpu->system); - //thread->kernelStats->regStats(name + ".kern"); + thread->kernelStats = new TheISA::Kernel::Statistics(cpu->system); + thread->kernelStats->regStats(name + ".kern"); #endif ; } |