Wakes all threads that are waiting on a condition variable.
tis_cond_broadcast(
                   cond );
 
Argument         Data Type               Access
cond             opaque pthread_cond_t   modify
#includeint tis_cond_broadcast ( pthread_cond_t *cond);
When threads are present, tis_cond_broadcast unblocks all threads waiting on the specified condition variable cond. For further information about actions when threads are present, refer to the pthread_cond_broadcast description.
Return Description0 Successful completion. [EINVAL] The value specified by cond is invalid.
tis_cond_destroy tis_cond_init tis_cond_signal tis_cond_wait