next up previous contents
Next: 10.13 fluke_cond_wait: wait on Up: 10 Condition Variables Previous: 10.11 fluke_cond_set_state: set the

10.12 fluke_cond_signal: signal on a condition variable object

SYNOPSIS

void fluke_cond_signal(fluke_cond_t *cond);

DESCRIPTION

Wakeup one thread waiting on a condition variable.

PARAMETERS

cond
The condition variable to signal.

ERRORS

If any of the following errors is detected by the Fluke implementation, it causes the current thread to take a synchronous exception with one of the following codes. All of these have an implicit FLUKE_INSANITY_ prefix.
NO_OBJECT
cond does not point to an active object.
NOT_COND
The object pointed to by cond is not a condition variable object.
INVALID_OBJECT
The state of the condition variable object has become invalid.



Utah Flux Research Group