next up previous contents index
Next: 18.3.23 pthread_cond_wait: Wait on Up: 18.3 POSIX Threads Reference Previous: 18.3.21 pthread_cond_init: Initialize a

18.3.22 pthread_cond_signal: Wakeup one thread waiting on a condition variable

 

SYNOPSIS

#include <oskit/threads/pthread.h>

int pthread_cond_signal(pthread_cond_t *cond);

DESCRIPTION

Wakeup the highest priority thread waiting on a condition variable.

PARAMETERS

cond
A pointer to the condition variable object.

RETURNS

Returns zero on success.

RELATED INFORMATION

pthread_cond_wait, pthread_cond_broadcast



University of Utah Flux Research Group