diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2012-08-06 16:55:34 -0700 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2012-08-06 16:55:34 -0700 |
commit | 73ef8bd168795855cd23e56dd6739dfa23a77eb8 (patch) | |
tree | dfe826d6863ba57fbb5b05beba8e1db210f48efc /src/sim/process.cc | |
parent | e232152db6d9cd511a75c41f47b00befe9b7719e (diff) | |
download | gem5-73ef8bd168795855cd23e56dd6739dfa23a77eb8.tar.xz |
process: add progName() virtual function
This replaces a (potentially uninitialized) string
field with a virtual function so that we can have
a safe interface without requiring changes to the
eio code.
Diffstat (limited to 'src/sim/process.cc')
-rw-r--r-- | src/sim/process.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sim/process.cc b/src/sim/process.cc index 72b808a1d..f92fb91e2 100644 --- a/src/sim/process.cc +++ b/src/sim/process.cc @@ -571,8 +571,6 @@ LiveProcess::LiveProcess(LiveProcessParams * params, ObjectFile *_objFile) __pid = params->pid; __ppid = params->ppid; - prog_fname = params->cmd[0]; - // load up symbols, if any... these may be used for debugging or // profiling. if (!debugSymbolTable) { |