Updated: October 28, 2024 |
Block a thread on a synchronization object
#include <sys/neutrino.h> int SyncCondvarWait( sync_t *condvar, sync_t *mutex ); int SyncCondvarWait_r( sync_t *condvar, sync_t *mutex );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The SyncCondvarWait() and SyncCondvarWait_r() kernel calls block the calling thread on the condition variable, condvar. If more than one thread is blocked on the object, the threads are queued in priority order.
These functions are similar, except in the way they indicate errors. See the Returns section for details.
The blocked thread can be unblocked by any one of the following conditions:
Before returning from SyncCondvarWait(), mutex is reacquired. If mutex is locked, the thread enters into the STATE_MUTEX state waiting for mutex to be unlocked. At this point it's as though you had called SyncMutexLock(mutex).
Before returning from SyncCondvarWait(), mutex is reacquired. If mutex is locked, the thread enters into the STATE_MUTEX state waiting for mutex to be unlocked. At this point it's as though you had called SyncMutexLock(mutex).
In all cases, mutex is reacquired before the call returns. If the thread enters the STATE_MUTEX state, the rules governing SyncMutexLock() are in effect.
Condition variables are used to block a thread until a certain condition is satisfied. Currently, the only event that causes a spurious wakeup is when a thread waiting on a condition variable receives a signal and calls a signal handler, but the thread doesn't go back to waiting when the signal handler returns (instead pthread_cond_wait() returns zero). Note that the number of events that cause a spurious wakeup may increase with future releases. Therefore, you should always reevaluate the condition, even on a successful return. The easiest way to do this is with a while loop. For example:
SyncMutexLock(&mutex); while(some_condition) { SyncCondvarWait(&condvar, &mutex); } SyncMutexUnlock(&mutex);
Blocking states
The only difference between these functions is the way they indicate errors:
See pthread_cond_wait().
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |