Defined in header <threads.h> | ||
---|---|---|
int cnd_broadcast( cnd_t *cond ); | (since C11) |
Unblocks all thread that currently wait on condition variable pointed to by cond
. If no threads are blocked, does nothing and returns thrd_success
.
cond | - | pointer to a condition variable |
thrd_success
if successful, thrd_error
otherwise.
(C11) | unblocks one thread blocked on a condition variable (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/c/thread/cnd_broadcast