![]() |
ezEngine
Release 25.03
|
Condition variables are used to put threads to sleep and wake them up upon certain events. More...
#include <ConditionVariable.h>
Public Types | |
enum | WaitResult { Signaled, Timeout } |
Public Member Functions | |
void | Lock () |
Locks the internal mutex. Recursive locking is allowed. | |
ezResult | TryLock () |
Tries to lock the internal mutex. Recursive locking is allowed. | |
void | Unlock () |
Unlocks the internal mutex. Must be called as often as it was locked. | |
void | SignalOne () |
Wakes up one of the threads that are currently waiting for the variable. More... | |
void | SignalAll () |
Wakes up all the threads that are currently waiting for the variable. More... | |
void | UnlockWaitForSignalAndLock () const |
Puts the calling thread to sleep and waits for the variable to get signaled. More... | |
WaitResult | UnlockWaitForSignalAndLock (ezTime timeout) const |
Same as UnlockWaitForSignalAndLock() but with an additional timeout condition. More... | |
Condition variables are used to put threads to sleep and wake them up upon certain events.
The ezConditionVariable works in conjunction with a mutex. When waiting for a signal, the OS typically puts the waiting thread to sleep. Using SignalOne() or SignalAll() other threads can wake up one or all threads that are currently waiting on the condition variable.
When a thread is woken up, it automatically holds the lock on the condition variable's mutex, which can be used to safely access or modify certain state.
ezConditionVariable is a low-level threading construct. Higher level functionality such as ezThreadSignal may be more suitable for most use cases.
void ezConditionVariable::SignalAll | ( | ) |
Wakes up all the threads that are currently waiting for the variable.
If no thread is currently waiting, this has no effect.
void ezConditionVariable::SignalOne | ( | ) |
Wakes up one of the threads that are currently waiting for the variable.
If no thread is currently waiting, this has no effect. In rare cases more than one thread can be woken up, called a spurious wake up.
void ezConditionVariable::UnlockWaitForSignalAndLock | ( | ) | const |
Puts the calling thread to sleep and waits for the variable to get signaled.
Asserts that the ezConditionVariable is locked when the function is called. The mutex will be unlocked and the thread is put to sleep. When the signal arrives, the thread is woken up and the mutex is locked again.
ezConditionVariable::WaitResult ezConditionVariable::UnlockWaitForSignalAndLock | ( | ezTime | timeout | ) | const |
Same as UnlockWaitForSignalAndLock() but with an additional timeout condition.
If the timeout is reached before the signal arrived, the function returns with WaitResult::Timeout.