sim: Initialize Drainable::_drainState to the system's state
authorAndreas Sandberg <andreas.sandberg@arm.com>
Tue, 4 Aug 2015 09:31:37 +0000 (10:31 +0100)
committerAndreas Sandberg <andreas.sandberg@arm.com>
Tue, 4 Aug 2015 09:31:37 +0000 (10:31 +0100)
It is sometimes desirable to be able to instantiate Drainable objects
when the simulator isn't in the Running state. Currently, we always
initialize Drainable objects to the Running state. However, this
confuses many of the sanity checks in the base class since objects
aren't expected to be in the Running state if the system is in the
Draining or Drained state.

Instead of always initializing the state variable in Drainable to
DrainState::Running, initialize it to the state the DrainManager is
in.

Note: This means an object can be created in the Draining/Drained
state without first calling drain().

src/sim/drain.cc

index 8549da261ad2716c0148974993caf26a4f0affc2..c6073487607a745607ac83b8cb3693b4a61e44a3 100644 (file)
@@ -150,7 +150,7 @@ DrainManager::drainableCount() const
 
 Drainable::Drainable()
     : _drainManager(DrainManager::instance()),
-      _drainState(DrainState::Running)
+      _drainState(_drainManager.state())
 {
     _drainManager.registerDrainable(this);
 }