ACE  6.3.4
Classes | Typedefs
Condition_Thread_Mutex.h File Reference
#include "ace/Thread_Mutex.h"
#include "ace/Condition_Attributes.h"
#include "ace/Condition_T.h"
#include "ace/Condition_Thread_Mutex.inl"

Classes

class  ACE_Condition< ACE_Thread_Mutex >
 ACE_Condition template specialization written using ACE_Mutexes. This allows threads to block until shared data changes state. A condition variable enables threads to atomically block and test the condition under the protection of a mutual exclu- sion lock (mutex) until the condition is satisfied. That is, the mutex must have been held by the thread before calling wait or signal on the condition. If the condition is false, a thread blocks on a condition variable and atomically releases the mutex that is waiting for the condition to change. If another thread changes the condition, it may wake up waiting threads by signaling the associated condition variable. The waiting threads, upon awakening, reacquire the mutex and re-evaluate the condition. More...
 

Typedefs

typedef ACE_Condition< ACE_Thread_MutexACE_Condition_Thread_Mutex
 

Detailed Description

Moved from Synch.h.

Author
Douglas C. Schmidt schmi.nosp@m.dt@c.nosp@m.s.wus.nosp@m.tl.e.nosp@m.du

Typedef Documentation