MEM: Pass the ports from Python to C++ using the Swig params
[gem5.git] / src / sim / sim_exit.hh
index d4b31d1eaf2d731eb6176077b0eb4508341c3a52..da71cc912cb33a4ae9ee0ab1c18cf3b4f9d5ba66 100644 (file)
@@ -34,7 +34,8 @@
 
 #include <string>
 
-#include "sim/host.hh"
+#include "base/types.hh"
+#include "sim/core.hh"
 
 // forward declaration
 class Callback;
@@ -46,17 +47,10 @@ class SimLoopExitEvent;
 void registerExitCallback(Callback *);
 
 /// Schedule an event to exit the simulation loop (returning to
-/// Python) at the indicated tick.  The message and exit_code
-/// parameters are saved in the SimLoopExitEvent to indicate why the
-/// exit occurred.
-SimLoopExitEvent *schedExitSimLoop(const std::string &message, Tick when,
-                                   Tick repeat = 0, EventQueue *q = NULL,
-                                   int exit_code = 0);
-
-/// 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);
 
 #endif // __SIM_EXIT_HH__