Class for OS (EVENT) Events (see BTF Specification Chapter 2.3.5).
Definition: os.h:18
Events
Possible types of OS events.
Definition: os.h:24
@ wait_event
The wait_event event indicates that a task calls a system service to wait for an OS-Event.
@ set_event
The set_event event indicates that an OS-Event (target) gets set by a process or a stimulus (source).
static Events stringToEvent(const std::string &str)
Converts a string into the enum Events.
Definition: os.cpp:24
bool isWait(OS::Events e) const
Checks, if the current OS event is wait_event.
Definition: os.cpp:44
static std::string eventToString(Events ev)
Converts the enum Events into string.
Definition: os.cpp:5