Name
pthread_cond_signal --
Description
The pthread_cond_signal function
unblocks at least one thread waiting on a condition
variable. The scheduling priority determines which thread
is runs next.
Returns
The pthread_cond_signal function
returns zero if the call is successful, otherwise it sets
errno to
EINVAL and returns -1.
Implementation Notes
None