57 pthread_mutex_t access;
Implementation of a mutual exclusion mechanism.
CMutex()
default constructor
virtual ~CMutex()
default destructor
bool try_enter(void)
function to request access to the critical section and return if denied.
void exit(void)
function to release the critical section
void enter(void)
function to request access to the critical section