summaryrefslogtreecommitdiff
path: root/src/mem/translating_port.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-10-16 05:06:40 -0700
committerGabe Black <gblack@eecs.umich.edu>2011-10-16 05:06:40 -0700
commitbcf664e5f922bf1f1cbdb4bed493a441f82df7f7 (patch)
tree601d76ca3dec31adf8aca23a5bf7e8bb25c0c6ab /src/mem/translating_port.hh
parent6ba3ebae43bbc7267e7f013bed949cc3339f0308 (diff)
downloadgem5-bcf664e5f922bf1f1cbdb4bed493a441f82df7f7.tar.xz
SE/FS: Turn on the page table class in FS.
Diffstat (limited to 'src/mem/translating_port.hh')
-rw-r--r--src/mem/translating_port.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/translating_port.hh b/src/mem/translating_port.hh
index ee0aea8df..dffcac766 100644
--- a/src/mem/translating_port.hh
+++ b/src/mem/translating_port.hh
@@ -35,8 +35,8 @@
#include "config/full_system.hh"
#include "mem/port.hh"
-#if !FULL_SYSTEM
class PageTable;
+#if !FULL_SYSTEM
class Process;
#endif
@@ -50,8 +50,8 @@ class TranslatingPort : public FunctionalPort
};
private:
-#if !FULL_SYSTEM
PageTable *pTable;
+#if !FULL_SYSTEM
Process *process;
#endif
AllocType allocating;