µOS++ IIIe Reference 7.0.0
The third edition of µOS++, a POSIX inspired open source framework, written in C++
Loading...
Searching...
No Matches

C++ API event flags definitions. More...

Classes

class  os::rtos::event_flags::attributes
 Event flags attributes. More...
 
class  os::rtos::event_flags
 Synchronised event flags. More...
 

Variables

static const attributes os::rtos::event_flags::initializer
 Default event flags initialiser.
 

Detailed Description

C++ API event flags definitions.

Examples
int
os_main (int argc, char* argv[])
{
{
event_flags ev1;
ev1.clear (1);
event_flags ev2
{ "ev2" };
ev2.clear (1);
}
}
int os_main(int argc, char *argv[])
Application entry point, running on the main thread context.

Variable Documentation

◆ initializer

const event_flags::attributes os::rtos::event_flags::initializer
static

Default event flags initialiser.

This variable is used by the default constructor.

Definition at line 122 of file os-evflags.h.