44a45
> Tick repeat;
52,56d52
< SimLoopExitEvent(Tick _when, const std::string &_cause, int c = 0)
< : Event(&mainEventQueue, Sim_Exit_Pri), cause(_cause),
< code(c)
< { setFlags(IsExitEvent); schedule(_when); }
<
58,59c54,57
< Tick _when, const std::string &_cause, int c = 0)
< : Event(q, Sim_Exit_Pri), cause(_cause), code(c)
---
> Tick _when, Tick _repeat, const std::string &_cause,
> int c = 0)
> : Event(q, Sim_Exit_Pri), cause(_cause),
> code(c), repeat(_repeat)
61a60,65
> // SimLoopExitEvent(EventQueue *q,
> // Tick _when, const std::string &_cause,
> // Tick _repeat = 0, int c = 0)
> // : Event(q, Sim_Exit_Pri), cause(_cause), code(c), repeat(_repeat)
> // { setFlags(IsExitEvent); schedule(_when); }
>