mbed
Fork of mbed-dev by
CriticalSectionLock Class Reference
[CriticalSectionLock functions]
RAII object for disabling, then restoring, interrupt state Usage: More...
#include <CriticalSectionLock.h>
Public Member Functions | |
| void | lock () |
| Mark the start of a critical section. | |
| void | unlock () |
| Mark the end of a critical section. | |
Detailed Description
RAII object for disabling, then restoring, interrupt state Usage:
void f() { // some code here { CriticalSectionLock lock; // Code in this block will run with interrupts disabled } // interrupts will be restored to their previous state }
Definition at line 47 of file CriticalSectionLock.h.
Member Function Documentation
| void lock | ( | void | ) |
Mark the start of a critical section.
Definition at line 62 of file CriticalSectionLock.h.
| void unlock | ( | void | ) |
Mark the end of a critical section.
Definition at line 70 of file CriticalSectionLock.h.
Generated on Tue Jul 12 2022 18:02:53 by
1.7.2
