thrCondBroadcast

A wrapper for pthread_cond_broadcast

Description:

This function broadcasts a condition to all threads, unblocking all threads that are blocked on the condition variable.

Invocation

void thrCondBroadcast( pthread_cond_t cond, int status )

Arguments

cond
Pointer to the condition variable.
status
Pointer to the inherited status value.

Notes: