Copy implementations
[gem5.git] / arch / alpha / alpha_tru64_process.hh
index 2b03d66b2d2644d2a25b7dcc6c299dd56ed411ad..8e5a64b518f902ab16ef7156840fc6ee96444961 100644 (file)
 
 #include "sim/process.hh"
 
+/// A process with emulated Alpha Tru64 syscalls.
 class AlphaTru64Process : public LiveProcess
 {
   public:
+    /// Constructor.
     AlphaTru64Process(const std::string &name,
                       ObjectFile *objFile,
                       int stdin_fd, int stdout_fd, int stderr_fd,
                       std::vector<std::string> &argv,
                       std::vector<std::string> &envp);
 
+    /// Syscall emulation function.
     virtual void syscall(ExecContext *xc);
 };