diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-16 18:04:01 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-16 18:04:01 -0700 |
commit | 54466a31c3c295f11d5936d34a1b2ac0d3e0045f (patch) | |
tree | 9214dd0f304c8376ff6c81b080589f994916d439 /src/arch/alpha/linux/process.hh | |
parent | 9660a0a5524a65094a43b557edf6a6cf0d11222d (diff) | |
download | gem5-54466a31c3c295f11d5936d34a1b2ac0d3e0045f.tar.xz |
Make the process objects use the Params structs in their constructors, and use a limit to check if access are on the stack.
--HG--
extra : convert_revision : af40a7acf424c4c4f62d0d76db1001a714ae0474
Diffstat (limited to 'src/arch/alpha/linux/process.hh')
-rw-r--r-- | src/arch/alpha/linux/process.hh | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/arch/alpha/linux/process.hh b/src/arch/alpha/linux/process.hh index cb22f521b..8d7c24e37 100644 --- a/src/arch/alpha/linux/process.hh +++ b/src/arch/alpha/linux/process.hh @@ -40,16 +40,7 @@ class AlphaLinuxProcess : public AlphaLiveProcess { public: /// Constructor. - AlphaLinuxProcess(const std::string &name, - ObjectFile *objFile, - System *system, - int stdin_fd, int stdout_fd, int stderr_fd, - std::vector<std::string> &argv, - std::vector<std::string> &envp, - const std::string &cwd, - uint64_t _uid, uint64_t _euid, - uint64_t _gid, uint64_t _egid, - uint64_t _pid, uint64_t _ppid); + AlphaLinuxProcess(LiveProcessParams * params, ObjectFile *objFile); virtual SyscallDesc* getDesc(int callnum); |