![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This mutex class defines the interface for a mutex that has "recursive" semantics. More...
This mutex class defines the interface for a mutex that has "recursive" semantics.
Recursive semantic allows the thread that owns the mutex to acquire ownership multiple times by calling lock() multiple times. There must be a corresponding number of unlock() calls made before the ownership of the mutex is released.
#include <Mutex.h>
Classes | |
class | ScopeBlock |
This concrete class provides a simple mechanism for providing mutex protection for a "scope block". More... | |
Public Member Functions | |
Mutex () | |
Constructor. | |
~Mutex () | |
Destructor. | |
void | lock (void) |
This method is invoked prior to entering a critical section. | |
void | unlock (void) |
This method is invoke at the end of a critical section. | |
Protected Attributes | |
Cpl_System_Mutex_T | m_mutex |
Raw Mutex handle/instance/pointer. | |
Cpl::System::Mutex::Mutex | ( | ) |
Constructor.
Cpl::System::Mutex::~Mutex | ( | ) |
Destructor.
void Cpl::System::Mutex::lock | ( | void | ) |
This method is invoked prior to entering a critical section.
If another thread currently "owns" the mutex, the current thread will "wait" until it can obtain ownership before proceeding.
void Cpl::System::Mutex::unlock | ( | void | ) |
This method is invoke at the end of a critical section.
This call will release the ownership of the mutex.
|
protected |
Raw Mutex handle/instance/pointer.