#include <mutex.h>
Public Member Functions | |
| Mutex (MutexType _type=MUTEX_TYPE_RECURSIVE) | |
| The constructor. | |
| ~Mutex () | |
| The destructor. | |
Protected Attributes | |
| pthread_mutexattr_t | m_mutexAttr |
| POSIX threading mutex. | |
Mutual exclusion (often abbreviated to mutex) algorithms are used in concurrent programming to avoid the simultaneous use of a common resource, such as a global variable, by pieces of computer code called critical sections.
1.5.8