25#ifndef SB_THREAD_SIGNAL_H
26#define SB_THREAD_SIGNAL_H
108 uint32_t m_waitersCount;
111#elif defined (__linux__) || defined(__APPLE__)
112 pthread_cond_t m_event;
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Portable mutex c...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Portable signal ...
void wait()
Waits for a signal notification.
SbBool trywait(const unsigned int timeout_ms)
Waits for a signal notification or timeout milliseconds have elapsed.
void signalAll()
Signals all threads that are waiting on this object.
void signalOne()
Signals one thread that is waiting on this object.
~SbThreadSignal()
Destructor.
SbThreadSignal(SbThreadMutex *mtx)
Constructor.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Portable spinloc...