#include "api/LCDMutex.h"
Definition at line 13 of file LCDMutex.h.
Public Member Functions | |
LCDMutex () | |
Default constructor. | |
~LCDMutex () | |
Destructor. | |
void | lock () |
Lock the mutex. | |
void | unlock () |
Unlock the mutex. |
|
This constructor initializes the mutex. Definition at line 7 of file LCDMutex.cpp. |
|
This destructor destroys he mutex. Definition at line 13 of file LCDMutex.cpp. |
|
This method is used to lock the mutex. It will have an effect only if it is not already locked by the same thread. Definition at line 18 of file LCDMutex.cpp. |
|
This method will release the mutex so another thread can acquire it. Definition at line 27 of file LCDMutex.cpp. |