The pthread_cond_broadcast function

Name

pthread_cond_broadcast -- 

Synopsis

#include <pthread.h>

int pthread_cond_broadcast (pthread_cond_t *cond );

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