![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the interface to generated a 'Event Flag'. More...
This abstract class defines the interface to generated a 'Event Flag'.
Event Flags are used to indicate that an 'event' has occurred. Each Event Flag is represent by a bit the Cpl_System_Event_Flags_T data type.
Individual event flags can be viewed as binary semaphores with respect to be signaled/waiting (though waiting is done on the thread's entire set of event flags).
A thread (runnable object) can wait for at least one event to be signaled. When the thread is waiting on event(s) and it is then signaled - all of Events that were in the signaled state when the thread was unblock are cleared.
#include <EventFlag.h>
Public Member Functions | |
virtual void | notifyEvents (Cpl_System_EventFlag_T events) noexcept=0 |
This operation is called by clients to set one or more Event Flags. | |
virtual void | notify (uint8_t eventNumber) noexcept=0 |
This operation is similar to notifyEvents(), except that it sets one event flags. | |
virtual void | su_notifyEvents (Cpl_System_EventFlag_T events) noexcept=0 |
This method is same as notifyEvents() EXCEPT this method can ONLY be called from supervisor mode and/or ISR contexts. | |
virtual void | su_notify (uint8_t eventNumber) noexcept=0 |
This method is same as notify() EXCEPT this method can ONLY be called from supervisor mode and/or ISR contexts. | |
virtual | ~EventFlag () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
This operation is similar to notifyEvents(), except that it sets one event flags.
The 'eventNumber' is the bit number (zero based) of the Event Flag to set.
This method can ONLY be called from a thread context.
Implemented in Cpl::System::EventLoop.
|
pure virtualnoexcept |
This operation is called by clients to set one or more Event Flags.
Each bit in 'events' is different Event Flag.
This method can ONLY be called from a thread context.
Implemented in Cpl::System::EventLoop.
|
pure virtualnoexcept |
This method is same as notify() EXCEPT this method can ONLY be called from supervisor mode and/or ISR contexts.
Implemented in Cpl::System::EventLoop.
|
pure virtualnoexcept |
This method is same as notifyEvents() EXCEPT this method can ONLY be called from supervisor mode and/or ISR contexts.
Implemented in Cpl::System::EventLoop.