TDME2 1.9.121
|
Threading condition variable implementation. More...
#include <tdme/os/threading/Condition.h>
Public Member Functions | |
Condition (const string &name) | |
Public constructor, creates condition variable. More... | |
~Condition () | |
Destructor, removes condition variable. More... | |
void | signal () |
wake ups a waiting thread on this condition, associated mutex should protect signal More... | |
void | broadcast () |
wake ups all waiting threads on this condition, associated mutex should protect broadcast More... | |
void | wait (Mutex &mutex) |
Blocks current thread until signaled/broadcasted, associated mutex should protect wait. More... | |
Private Attributes | |
string | name |
pthread_cond_t | pThreadCond |
Threading condition variable implementation.
Definition at line 28 of file Condition.h.
Condition | ( | const string & | name | ) |
Public constructor, creates condition variable.
name | string |
Definition at line 10 of file Condition.cpp.
~Condition | ( | ) |
Destructor, removes condition variable.
Definition at line 20 of file Condition.cpp.
void broadcast | ( | ) |
wake ups all waiting threads on this condition, associated mutex should protect broadcast
Definition at line 38 of file Condition.cpp.
void signal | ( | ) |
wake ups a waiting thread on this condition, associated mutex should protect signal
Definition at line 29 of file Condition.cpp.
void wait | ( | Mutex & | mutex | ) |
Blocks current thread until signaled/broadcasted, associated mutex should protect wait.
Definition at line 47 of file Condition.cpp.
|
private |
Definition at line 57 of file Condition.h.
|
private |
Definition at line 61 of file Condition.h.