mem: Make the XBar responsible for tracking response routing
[gem5.git] / src / sim / debug.hh
index ca7a606c629f2db28ecb8bae85a6b157faf2d977..fc9f0f55eeb0fb007c8863b180afa25469f39060 100644 (file)
 
 #include "base/types.hh"
 
-void schedBreakCycle(Tick when);
+/** @file This file provides the definitions for some useful debugging
+ * functions. These are intended to be called from a debugger such as
+ * gdb.
+ */
+
+
+/** Cause the simulator to execute a breakpoint
+ * @param when the tick to break
+ */
+void schedBreak(Tick when);
+
+/** Cause the simulator to return to python to create a checkpoint
+ * @param when the cycle to break
+ */
+void takeCheckpoint(Tick when);
+
+/** Dump all the events currently on the event queue
+ */
+void eventqDump();
 
 int getRemoteGDBPort();
 // Remote gdb base port.  0 disables remote gdb.