thrCondSignal

A wrapper for pthread_cond_signal

Description:

This function signals a condition, unblocking at least one thread that is blocked on the condition variable.

Invocation

void thrCondSignal( pthread_cond_t cond, int status )

Arguments

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

Notes: