summaryrefslogtreecommitdiff
path: root/src/sim/process.hh
diff options
context:
space:
mode:
authorBrandon Potter <brandon.potter@amd.com>2016-11-09 14:27:41 -0600
committerBrandon Potter <brandon.potter@amd.com>2016-11-09 14:27:41 -0600
commitb792e9e43c855cdb2fbf71084ee8e60eb4878741 (patch)
tree108049b5dd14760e53c77b2ffdf9cbd26a962a59 /src/sim/process.hh
parent3886c4a8f2e1bfe17cbf7a5a76ba0fc978c6bb48 (diff)
downloadgem5-b792e9e43c855cdb2fbf71084ee8e60eb4878741.tar.xz
syscall_emul: [patch 6/22] remove unused fields from Process class
It looks like tru64 has some nxm* system calls, but the two fields that are defined in the Process class are unused by any of the code. There doesn't appear to be any reference in the tru64 code.
Diffstat (limited to 'src/sim/process.hh')
-rw-r--r--src/sim/process.hh4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sim/process.hh b/src/sim/process.hh
index 4b0428585..5d6835c21 100644
--- a/src/sim/process.hh
+++ b/src/sim/process.hh
@@ -116,10 +116,6 @@ class Process : public SimObject
// instead, so they can override thie method to return false.
virtual bool mmapGrowsDown() const { return true; }
- // Base of region for nxm data
- Addr nxm_start;
- Addr nxm_end;
-
Stats::Scalar num_syscalls; // number of syscalls executed
protected: