HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
UT_Condition Class Reference

Condition synchronization primitive. More...

#include <UT_Condition.h>

Public Member Functions

 UT_Condition ()
 
 ~UT_Condition ()
 
void waitForTrigger (UT_Lock &lock)
 
void triggerAll ()
 
void triggerOne ()
 
 UT_Condition (const UT_Condition &copy)=delete
 
UT_Conditionoperator= (const UT_Condition &copy)=delete
 

Detailed Description

Condition synchronization primitive.

Definition at line 25 of file UT_Condition.h.

Constructor & Destructor Documentation

UT_Condition::UT_Condition ( )
UT_Condition::~UT_Condition ( )
UT_Condition::UT_Condition ( const UT_Condition copy)
delete

Member Function Documentation

UT_Condition& UT_Condition::operator= ( const UT_Condition copy)
delete
void UT_Condition::triggerAll ( )

Trigger all waiting threads.

Note
The caller should hold the same lock that was passed to waitForTrigger() if precise scheduling of events is desired.
void UT_Condition::triggerOne ( )

Trigger one waiting thread.

Note
The caller should hold the same lock that was passed to waitForTrigger() if precise scheduling of events is desired.
void UT_Condition::waitForTrigger ( UT_Lock lock)

Block until we're triggered.

The lock must be held when this method is called it will be released when waiting for the trigger and re-acquired when this method returns.


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