diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-10-01 16:02:47 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-10-01 16:02:47 -0400 |
commit | 93e60de65647f3324e59b291c35ef2cf3a0fb9a0 (patch) | |
tree | 6c4f77185a157d91487c9ca46c4e77ace17a7b5a /sim/process.hh | |
parent | 30ad202a31c99198b5ecf3c30dbd6e594a464dbf (diff) | |
download | gem5-93e60de65647f3324e59b291c35ef2cf3a0fb9a0.tar.xz |
Add executable parameter to LiveProcess. This allows the argv[0] value to
stay fixed even if the path to the binary changes, so the simulation results
are independent of that path.
--HG--
extra : convert_revision : d1109cd284466c14eddc97289908a51e771fc5db
Diffstat (limited to 'sim/process.hh')
-rw-r--r-- | sim/process.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sim/process.hh b/sim/process.hh index ef54ced78..28c16a444 100644 --- a/sim/process.hh +++ b/sim/process.hh @@ -194,6 +194,7 @@ class LiveProcess : public Process // open and look at the object file. static LiveProcess *create(const std::string &nm, int stdin_fd, int stdout_fd, int stderr_fd, + std::string executable, std::vector<std::string> &argv, std::vector<std::string> &envp); }; |