summaryrefslogtreecommitdiff
path: root/arch/alpha/process.hh
diff options
context:
space:
mode:
Diffstat (limited to 'arch/alpha/process.hh')
-rw-r--r--arch/alpha/process.hh11
1 files changed, 6 insertions, 5 deletions
diff --git a/arch/alpha/process.hh b/arch/alpha/process.hh
index a2eb65890..6d6585175 100644
--- a/arch/alpha/process.hh
+++ b/arch/alpha/process.hh
@@ -30,18 +30,19 @@
#define __ALPHA_PROCESS_HH__
#include <string>
+#include <vector>
-#include "arch/alpha/linux/process.hh"
-#include "arch/alpha/tru64/process.hh"
-#include "base/loader/object_file.hh"
+class LiveProcess;
+class ObjectFile;
+class System;
namespace AlphaISA
{
LiveProcess *
createProcess(const std::string &nm, ObjectFile * objFile, System * system,
- int stdin_fd, int stdout_fd, int stderr_fd,
- std::vector<std::string> &argv, std::vector<std::string> &envp);
+ int stdin_fd, int stdout_fd, int stderr_fd,
+ std::vector<std::string> &argv, std::vector<std::string> &envp);
} // namespace AlphaISA