Updated: October 28, 2024 |
Unblock waiting threads
#include <pthread.h> int pthread_sleepon_broadcast( const volatile void * addr );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pthread_sleepon_broadcast() function unblocks all threads currently waiting on addr. All affected blocked threads become runnable and are scheduled using the usual scheduling rules, which means the order in which these threads are unblocked (or woken up) is different than the order in which they were blocked.
You should use pthread_sleepon_broadcast() or pthread_sleepon_signal(), depending on the task you're doing:
If you use pthread_sleepon_broadcast(), you must recheck the predicate and reblock if necessary. The first thread to wake up owns the lock; all others must go back to sleep.
If you use pthread_sleepon_signal(), you don't have to recheck the predicate. One thread owns the lock at a time.
Don't use pthread_sleepon_signal() in this case; it could result in a deadlock.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |