![]() |
Imt.Base C++ API V4.1.1.0
|
Class for handling critical sections. More...
#include <Imt.Base.Dff.Runtime/inc/Imt.Base.Dff.Runtime/RuntimeCriticalSection.h>
Static Public Member Functions | |
static void | enter () |
Enters a critical section. | |
static void | exit () |
Exits a critical section when there is no more recursions. | |
static bool | isInCriticalSection () |
static void | reset () |
Reset critical section, this enables irq in any case. | |
Class for handling critical sections.
Critical section are entered by enter(), and subsequently exited by calling exit(). They provided a basic implementation that simple disables IRQ. In contrast to RuntimeInterrupt the enter/exit mechanism can be nested.
It's recommended to call enter() at application start and exit it before RuntimeCore::start() is called
Definition at line 56 of file RuntimeCriticalSection.h.
|
static |
Enters a critical section.
|
static |
Exits a critical section when there is no more recursions.
|
static |
|
static |
Reset critical section, this enables irq in any case.