Merge zizzer:/bk/newmem
[gem5.git] / arch / alpha / tru64 / process.hh
index 05176070202fa1dc38b92687b19edc8158c2fecc..1cde4cac0af4bc679d9371dc57ea6453e5f65a8f 100644 (file)
 #ifndef __ALPHA_TRU64_PROCESS_HH__
 #define __ALPHA_TRU64_PROCESS_HH__
 
-#include "sim/process.hh"
+#include "arch/alpha/process.hh"
 
+namespace AlphaISA {
 /// A process with emulated Alpha Tru64 syscalls.
-class AlphaTru64Process : public LiveProcess
+class AlphaTru64Process : public AlphaLiveProcess
 {
   public:
     /// Constructor.
     AlphaTru64Process(const std::string &name,
                       ObjectFile *objFile,
+                      System *system,
                       int stdin_fd, int stdout_fd, int stderr_fd,
                       std::vector<std::string> &argv,
                       std::vector<std::string> &envp);
@@ -54,5 +56,6 @@ class AlphaTru64Process : public LiveProcess
     virtual SyscallDesc* getDesc(int callnum);
 };
 
+} // namespace AlphaISA
 
 #endif // __ALPHA_TRU64_PROCESS_HH__