diff options
Diffstat (limited to 'sim/stat_control.hh')
-rw-r--r-- | sim/stat_control.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sim/stat_control.hh b/sim/stat_control.hh index a22ce76af..806c4be6b 100644 --- a/sim/stat_control.hh +++ b/sim/stat_control.hh @@ -32,6 +32,8 @@ #include <fstream> #include <list> +class EventQueue; + namespace Stats { enum { @@ -43,7 +45,7 @@ class Output; extern std::list<Output *> OutputList; void DumpNow(); -void SetupEvent(int flags, Tick when, Tick repeat = 0); +void SetupEvent(int flags, Tick when, Tick repeat = 0, EventQueue *queue = NULL); void InitSimStats(); |