diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2014-11-24 09:03:38 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2014-11-24 09:03:38 -0500 |
commit | d66b14ca61bec95a4049e5aae468904395055efd (patch) | |
tree | 6ddaf6bd4a792f0fe3125d57dae95fb9099dd7b7 /src/sim/process.cc | |
parent | 1f539f13c32ad5a9187d56a098d4c857639b0e05 (diff) | |
download | gem5-d66b14ca61bec95a4049e5aae468904395055efd.tar.xz |
misc: Another round of static analysis fixups
Mostly addressing uninitialised members.
Diffstat (limited to 'src/sim/process.cc')
-rw-r--r-- | src/sim/process.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sim/process.cc b/src/sim/process.cc index 0412c27e0..2e5f64497 100644 --- a/src/sim/process.cc +++ b/src/sim/process.cc @@ -104,7 +104,9 @@ template struct AuxVector<uint64_t>; Process::Process(ProcessParams * params) : SimObject(params), system(params->system), + brk_point(0), stack_base(0), stack_size(0), stack_min(0), max_stack_size(params->max_stack_size), + next_thread_stack_base(0), M5_pid(system->allocatePID()), useArchPT(params->useArchPT), kvmInSE(params->kvmInSE), |