This class combines a lock with a pthreads condition. This allows one thread to wait until another thread has modified the data that is protected by the lock.
DD::Image::SignalLock::wait |
( |
unsigned long |
timeoutms = 0 | ) |
|
|
inline |
You must lock() the SignalLock exactly once before calling this! This unlocks the lock, then waits for another thread to call signal(). This then calls lock() and returns.
If timeoutms is specified it will wait up to timeoutms milliseconds before returning. It will return true if the thread is signalled and return false if the timeout occurred. A timeoutms of 0 ( the default ) means wait indefinitely.
Note: On windows this may also return even if signal() is not called. You should always check the data protected by the lock to make sure it is correct, if not you should run wait() again.
Referenced by DD::Image::FileReader::lock().