Merge isabel.reinhardt.house:/z/stever/bk/m5-head
[gem5.git] / arch / alpha / alpha_linux_process.hh
index 0d2f7641f3f7446d405297ebae2e912156b21470..4b893619204a1b6cdebaaacc2420627bbc3977e6 100644 (file)
 
 #include "sim/process.hh"
 
+
+/// A process with emulated Alpha/Linux syscalls.
 class AlphaLinuxProcess : public LiveProcess
 {
   public:
+    /// Constructor.
     AlphaLinuxProcess(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);
 };