sim-se: Add default to SyscallDesc constructor
[gem5.git] / src / sim / stat_control.hh
index 9731d87cfc3dd2b90f8638698e94d232a1c7c272..73961e8b702739bed3f65be3a056f4c25ca9403b 100644 (file)
 #ifndef __SIM_STAT_CONTROL_HH__
 #define __SIM_STAT_CONTROL_HH__
 
+#include "base/types.hh"
+#include "sim/core.hh"
+
 namespace Stats {
 
+double statElapsedTime();
+
+Tick statElapsedTicks();
+
+Tick statFinalTick();
+
 void initSimStats();
 
 /**
@@ -74,7 +83,7 @@ void schedStatEvent(bool dump, bool reset, Tick when = curTick(),
  * temporal trends in the data.
  * @param period The period at which the dumping should occur.
  */
-void periodicStatDump(uint64_t period = 0);
+void periodicStatDump(Tick period = 0);
 } // namespace Stats
 
 #endif // __SIM_STAT_CONTROL_HH__