From 0572dc3c6eca3acd6fc4e2e34607bd5d0ab67829 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Tue, 1 Sep 2015 13:41:45 +0100 Subject: sim: Remove autoserialize support for exit events This changeset removes the support for the autoserialize parameter in GlobalSimLoopExitEvent (including exitSimLoop()) and LocalSimLoopExitEvent. Auto-serialization of the LocalSimLoopExitEvent was never used, so this is not expected to affect anything. However, it was sometimes used for GlobalSimLoopExitEvent. Unfortunately, serialization of global events has never been supported, so checkpoints with such events will currently cause simulation panics. The serialize parameter to exitSimLoop() has been left in-place to maintain API compatibility (removing it would affect m5ops). Instead of just dropping it, we now print a warning if the parameter is set and the exit event is scheduled in the future (i.e., not at the current tick). --- src/sim/sim_events.hh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/sim/sim_events.hh') diff --git a/src/sim/sim_events.hh b/src/sim/sim_events.hh index 7c2393010..8a384019a 100644 --- a/src/sim/sim_events.hh +++ b/src/sim/sim_events.hh @@ -63,7 +63,7 @@ class GlobalSimLoopExitEvent : public GlobalEvent // non-scheduling version for createForUnserialize() GlobalSimLoopExitEvent(); GlobalSimLoopExitEvent(Tick when, const std::string &_cause, int c, - Tick repeat = 0, bool serialize = false); + Tick repeat = 0); const std::string getCause() const { return cause; } const int getCode() const { return code; } @@ -83,8 +83,7 @@ class LocalSimLoopExitEvent : public Event public: LocalSimLoopExitEvent(); - LocalSimLoopExitEvent(const std::string &_cause, int c, Tick repeat = 0, - bool serialize = false); + LocalSimLoopExitEvent(const std::string &_cause, int c, Tick repeat = 0); const std::string getCause() const { return cause; } const int getCode() const { return code; } -- cgit v1.2.3