sim, arch, base: Refactor the base remote GDB class.
[gem5.git] / src / sim / sim_exit.hh
index 11750293228ef20d2855cdb134636ceb72ae2b19..55db55ff2c879736dd3b39d84128f0beeba8d991 100644 (file)
 
 #include "base/types.hh"
 
+Tick curTick();
+
 // forward declaration
 class Callback;
-class EventQueue;
-class SimLoopExitEvent;
 
 /// Register a callback to be called when Python exits.  Defined in
 /// sim/main.cc.
 void registerExitCallback(Callback *);
 
 /// Schedule an event to exit the simulation loop (returning to
-/// Python) at the end of the current cycle (curTick).  The message
+/// Python) at the end of the current cycle (curTick()).  The message
 /// and exit_code parameters are saved in the SimLoopExitEvent to
 /// indicate why the exit occurred.
-void exitSimLoop(const std::string &message, int exit_code = 0);
+void exitSimLoop(const std::string &message, int exit_code = 0,
+                 Tick when = curTick(), Tick repeat = 0,
+                 bool serialize = false);
 
 #endif // __SIM_EXIT_HH__