mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-14 06:43:19 +08:00
5 lines
153 B
C
5 lines
153 B
C
void Philo_ctor(Philo * const me) {
|
|
QActive_ctor(&me->super, Q_STATE_CAST(&Philo_initial));
|
|
QTimeEvt_ctorX(&me->timeEvt, me, TIMEOUT_SIG, 0U);
|
|
}
|