Tick was not correctly wrapped for the stats system, and therefore it was not
possible to configure the stats dumping from the python scripts without
defining Ticks as long long. This patch fixes the wrapping of Tick by copying
the typemap of uint64_t to Tick.
%ignore Stats::Info::flags;
%import "base/stats/types.hh"
+%import "base/types.hh"
%include "base/stats/info.hh"
%include "base/stats/output.hh"
void schedStatEvent(bool dump, bool reset,
Tick when = curTick(), Tick repeat = 0);
-void periodicStatDump(long long period = 0);
+void periodicStatDump(Tick period = 0);
void updateEvents();
}
void
-periodicStatDump(uint64_t period)
+periodicStatDump(Tick period)
{
/*
* If the period is set to 0, then we do not want to dump periodically,
* 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__