cpu: remove unnecessary data ptr from O3 internal read() funcs
[gem5.git] / src / sim / sim_exit.hh
index da71cc912cb33a4ae9ee0ab1c18cf3b4f9d5ba66..218db9aeb90906890fad39fcc6560aa56738f276 100644 (file)
@@ -39,8 +39,6 @@
 
 // forward declaration
 class Callback;
-class EventQueue;
-class SimLoopExitEvent;
 
 /// Register a callback to be called when Python exits.  Defined in
 /// sim/main.cc.
@@ -51,6 +49,7 @@ void registerExitCallback(Callback *);
 /// 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,
-                 Tick when = curTick(), Tick repeat = 0);
+                 Tick when = curTick(), Tick repeat = 0,
+                 bool serialize = false);
 
 #endif // __SIM_EXIT_HH__