base: Transition CP annotate to use shared_ptr
[gem5.git] / src / sim / stat_control.hh
index 9731d87cfc3dd2b90f8638698e94d232a1c7c272..889a98364e8b454473f6204a2b218e97be000cac 100644 (file)
 
 namespace Stats {
 
+double statElapsedTime();
+
+Tick statElapsedTicks();
+
+Tick statFinalTick();
+
 void initSimStats();
 
 /**
@@ -74,7 +80,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__