mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-03 03:01:44 +00:00
artf4107: Uniform initialization syntax introduced
Change-Id: I452b4794d757a0817589ec62b75eda7fbdd74904
This commit is contained in:
@@ -35,11 +35,11 @@ class Notifier : public ErrorBase {
|
||||
void DeleteFromQueue(); // delete this Notifier from the timer queue
|
||||
TimerEventHandler m_handler; // address of the handler
|
||||
void *m_param; // a parameter to pass to the handler
|
||||
double m_period; // the relative time (either periodic or single)
|
||||
double m_expirationTime; // absolute expiration time for the current event
|
||||
Notifier *m_nextEvent; // next Nofifier event
|
||||
bool m_periodic; // true if this is a periodic event
|
||||
bool m_queued; // indicates if this entry is queued
|
||||
double m_period = 0; // the relative time (either periodic or single)
|
||||
double m_expirationTime = 0; // absolute expiration time for the current event
|
||||
Notifier *m_nextEvent = nullptr; // next Nofifier event
|
||||
bool m_periodic = false; // true if this is a periodic event
|
||||
bool m_queued = false; // indicates if this entry is queued
|
||||
SEMAPHORE_ID m_handlerSemaphore; // held by interrupt manager task while
|
||||
// handler call is in progress
|
||||
|
||||
|
||||
Reference in New Issue
Block a user