Equalizer  1.3.1-git
Public Member Functions
co::base::Condition Class Reference

A condition variable and associated lock. More...

#include <condition.h>

List of all members.

Public Member Functions

COBASE_API Condition ()
 Construct a new condition variable.
COBASE_API ~Condition ()
 Destruct this condition variable.
COBASE_API void lock ()
 Lock the mutex.
COBASE_API void unlock ()
 Unlock the mutex.
COBASE_API void signal ()
 Signal the condition.
COBASE_API void broadcast ()
 Broadcast the condition.
COBASE_API void wait ()
 Atomically unlock the mutex, wait for a signal and relock the mutex.
COBASE_API bool timedWait (const uint32_t timeout)
 Atomically unlock the mutex, wait for a signal and relock the mutex.

Detailed Description

A condition variable and associated lock.

Follows closely pthread_condition and mutex

Definition at line 35 of file co/base/condition.h.


Constructor & Destructor Documentation

Construct a new condition variable.

Version:
1.0

Destruct this condition variable.

Version:
1.0

Member Function Documentation

COBASE_API void co::base::Condition::broadcast ( )

Broadcast the condition.

Version:
1.0
COBASE_API void co::base::Condition::lock ( )

Lock the mutex.

Version:
1.0
COBASE_API void co::base::Condition::signal ( )

Signal the condition.

Version:
1.0
COBASE_API bool co::base::Condition::timedWait ( const uint32_t  timeout)

Atomically unlock the mutex, wait for a signal and relock the mutex.

The operation is aborted after the given timeout and false is returned.

Parameters:
timeoutthe timeout in milliseconds to wait for the signal.
Returns:
true on success, false on timeout.
Version:
1.0
COBASE_API void co::base::Condition::unlock ( )

Unlock the mutex.

Version:
1.0
COBASE_API void co::base::Condition::wait ( )

Atomically unlock the mutex, wait for a signal and relock the mutex.

Version:
1.0

The documentation for this class was generated from the following file:
Generated on Fri Apr 20 2012 12:21:49 for Equalizer 1.3.1-git by  doxygen 1.8.0