TDME2 1.9.121
Public Member Functions | Private Attributes | Friends | List of all members
Mutex Class Reference

Mutex implementation. More...

#include <tdme/os/threading/Mutex.h>

Collaboration diagram for Mutex:
Collaboration graph

Public Member Functions

 Mutex (const string &name)
 Public constructor. More...
 
 ~Mutex ()
 Destroys the mutex. More...
 
bool tryLock ()
 Tries to locks the mutex. More...
 
void lock ()
 Locks the mutex, additionally mutex locks will block until other locks have been unlocked. More...
 
void unlock ()
 Unlocks this mutex. More...
 

Private Attributes

string name
 
pthread_mutex_t pThreadMutex
 

Friends

class Condition
 

Detailed Description

Mutex implementation.

Mutexes are used to ensure that only one process can run a critical section, which is e.g. modifying shared data between thread.

Author
Andreas Drewke

Definition at line 27 of file Mutex.h.

Constructor & Destructor Documentation

◆ Mutex()

Mutex ( const string &  name)

Public constructor.

Parameters
namename

Definition at line 10 of file Mutex.cpp.

◆ ~Mutex()

~Mutex ( )

Destroys the mutex.

Definition at line 19 of file Mutex.cpp.

Member Function Documentation

◆ lock()

void lock ( )

Locks the mutex, additionally mutex locks will block until other locks have been unlocked.

Definition at line 39 of file Mutex.cpp.

◆ tryLock()

bool tryLock ( )

Tries to locks the mutex.

Definition at line 27 of file Mutex.cpp.

◆ unlock()

void unlock ( )

Unlocks this mutex.

Definition at line 48 of file Mutex.cpp.

Friends And Related Function Documentation

◆ Condition

friend class Condition
friend

Definition at line 28 of file Mutex.h.

Member Data Documentation

◆ name

string name
private

Definition at line 58 of file Mutex.h.

◆ pThreadMutex

pthread_mutex_t pThreadMutex
private

Definition at line 62 of file Mutex.h.


The documentation for this class was generated from the following files: