Name
pthread_cond_broadcast --
Description
The pthread_cond_broadcast
function unblocks all threads that are waiting on the given
condition variable.
Returns
The pthread_cond_broadcast
function returns zero if the call is successful,
otherwise it sets errno to EINVAL and returns -1.
Implementation Notes
None