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

Threading condition variable implementation. More...

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

Collaboration diagram for Condition:
Collaboration graph

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
 

Detailed Description

Threading condition variable implementation.

Author
Andreas Drewke

Definition at line 28 of file Condition.h.

Constructor & Destructor Documentation

◆ Condition()

Condition ( const string &  name)

Public constructor, creates condition variable.

Parameters
namestring

Definition at line 10 of file Condition.cpp.

◆ ~Condition()

~Condition ( )

Destructor, removes condition variable.

Definition at line 20 of file Condition.cpp.

Member Function Documentation

◆ broadcast()

void broadcast ( )

wake ups all waiting threads on this condition, associated mutex should protect broadcast

Definition at line 38 of file Condition.cpp.

◆ signal()

void signal ( )

wake ups a waiting thread on this condition, associated mutex should protect signal

Definition at line 29 of file Condition.cpp.

◆ wait()

void wait ( Mutex mutex)

Blocks current thread until signaled/broadcasted, associated mutex should protect wait.

Definition at line 47 of file Condition.cpp.

Member Data Documentation

◆ name

string name
private

Definition at line 57 of file Condition.h.

◆ pThreadCond

pthread_cond_t pThreadCond
private

Definition at line 61 of file Condition.h.


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