We need to make sure that the uid of the first event generated is different from the uid of the simulator when no events have yet been run.

This commit is contained in:
Mathieu Lacage
2006-12-15 10:01:23 +01:00
parent 3cab375630
commit 6aa35066f2

View File

@@ -92,7 +92,10 @@ SimulatorPrivate::SimulatorPrivate (Scheduler *events)
m_stop = false;
m_stopAt = 0;
m_events = events;
m_uid = 0;
// uids are allocated from 1.
m_uid = 1;
// before ::Run is entered, the m_currentUid will be zero
m_currentUid = 0;
m_logEnable = false;
m_currentNs = 0;
}