summaryrefslogtreecommitdiff
path: root/sim/sim_events.hh
diff options
context:
space:
mode:
Diffstat (limited to 'sim/sim_events.hh')
-rw-r--r--sim/sim_events.hh26
1 files changed, 0 insertions, 26 deletions
diff --git a/sim/sim_events.hh b/sim/sim_events.hh
index 0029a8404..c4db248e0 100644
--- a/sim/sim_events.hh
+++ b/sim/sim_events.hh
@@ -66,8 +66,6 @@ class SimExitEvent : public Event
virtual const char *description();
};
-void SimExit(const char *message);
-
//
// Event class to terminate simulation after 'n' related events have
// occurred using a shared counter: used to terminate when *all*
@@ -91,30 +89,6 @@ class CountedExitEvent : public Event
//
// Event to cause a statistics dump
//
-class DumpStatsEvent : public Event
-{
- public:
- DumpStatsEvent()
- : Event(&mainEventQueue)
- { setFlags(AutoDelete); schedule(curTick, 999); }
-
- DumpStatsEvent(EventQueue *q)
- : Event(q)
- { setFlags(AutoDelete); schedule(curTick, 999); }
-
- DumpStatsEvent(Tick when)
- : Event(&mainEventQueue)
- { setFlags(AutoDelete); schedule(when, 999); }
-
- DumpStatsEvent(EventQueue *q, Tick when)
- : Event(q)
- { setFlags(AutoDelete); schedule(when, 999); }
-
- void process();
-
- virtual const char *description();
-};
-
class CheckSwapEvent : public Event
{
private: