summaryrefslogtreecommitdiff
path: root/sim/sim_events.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sim/sim_events.cc')
-rw-r--r--sim/sim_events.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/sim_events.cc b/sim/sim_events.cc
index 7456e788b..a31da18dd 100644
--- a/sim/sim_events.cc
+++ b/sim/sim_events.cc
@@ -68,14 +68,14 @@ SimExitEvent::description()
//
CountedExitEvent::CountedExitEvent(EventQueue *q, const std::string &_cause,
Tick _when, int &_downCounter)
- : Event(q),
+ : Event(q, Sim_Exit_Pri),
cause(_cause),
downCounter(_downCounter)
{
// catch stupid mistakes
assert(downCounter > 0);
- schedule(_when, 1000);
+ schedule(_when);
}