systemc: Fix a couple memory errors.
authorGabe Black <gabeblack@google.com>
Sat, 21 Jul 2018 00:18:22 +0000 (17:18 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 11 Sep 2018 21:43:25 +0000 (21:43 +0000)
commitbe38309891b4adb91e9a6b56923f1f9e82487e61
tree3ac17c2652f12a1debf355c75a0cd94b0bfddaeb
parentfbf406d0a63ec42ab0ac09788e16eab2a4839230
systemc: Fix a couple memory errors.

Because events are held in vectors, it doesn't make sense to keep an
iterator into the parent to keep track of where that event is for easy
removal since the iterator becomes invalid when the vector is changed.

The events need to be stored in a vector because systemc defines an
accessor which returns that vector, and building a vector on the fly
would be cumbersome.

Also, make sure the Event parent pointer is set to nullptr if there
isn't a parent.

Change-Id: I63a676190e7747e60baaca50009161d47bfc1c54
Reviewed-on: https://gem5-review.googlesource.com/12039
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
src/systemc/core/event.cc
src/systemc/core/event.hh
src/systemc/core/object.cc
src/systemc/core/object.hh