mem: Add a method for setting the time on a packet.
[gem5.git] / src / mem / page_table.hh
index 845bb911278793dad5b3aa0a23d22d85c66cb3b6..b8b52174c81380f3e4a1fe010bb0fd6d1a496289 100644 (file)
@@ -46,7 +46,7 @@
 #include "sim/host.hh"
 #include "sim/serialize.hh"
 
-class System;
+class Process;
 
 /**
  * Page Table Declaration.
@@ -68,11 +68,11 @@ class PageTable
     const Addr pageSize;
     const Addr offsetMask;
 
-    System *system;
+    Process *process;
 
   public:
 
-    PageTable(System *_system, Addr _pageSize = TheISA::VMPageSize);
+    PageTable(Process *_process, Addr _pageSize = TheISA::VMPageSize);
 
     ~PageTable();