summaryrefslogtreecommitdiff
path: root/arch/mips/process.hh
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/process.hh')
-rw-r--r--arch/mips/process.hh14
1 files changed, 8 insertions, 6 deletions
diff --git a/arch/mips/process.hh b/arch/mips/process.hh
index b2a35d688..8f5d74d96 100644
--- a/arch/mips/process.hh
+++ b/arch/mips/process.hh
@@ -29,18 +29,20 @@
#ifndef __MIPS_PROCESS_HH__
#define __MIPS_PROCESS_HH__
-#include "arch/mips/linux_process.hh"
-#include "base/loader/object_file.hh"
+#include <string>
+#include <vector>
-using namespace std;
+class LiveProcess;
+class ObjectFile;
+class System;
namespace MipsISA
{
LiveProcess *
-createProcess(const string &nm, ObjectFile * objFile,System * system,
- int stdin_fd, int stdout_fd, int stderr_fd,
- vector<string> &argv, vector<string> &envp);
+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);
} // namespace MipsISA