Интерактивная система просмотра системных руководств (man-ов)
pthread_cond_signal (3)
pthread_cond_signal (3) ( Solaris man: Библиотечные вызовы )>> pthread_cond_signal (3) ( FreeBSD man: Библиотечные вызовы ) pthread_cond_signal (3) ( POSIX man: Библиотечные вызовы )
BSD mandoc
NAME
pthread_cond_signal
- unblock a thread waiting for a condition variable
LIBRARY
Lb libpthread
SYNOPSIS
#include <pthread.h>
int
pthread_cond_signal (pthread_cond_t *cond);
DESCRIPTION
The
pthread_cond_signal ();
function unblocks one thread waiting for the condition variable
Fa cond .
RETURN VALUES
If successful, the
pthread_cond_signal ();
function will return zero, otherwise an error number will be returned
to indicate the error.
ERRORS
The
pthread_cond_signal ();
function will fail if:
- Bq Er EINVAL
-
The value specified by
Fa cond
is invalid.
SEE ALSO
pthread_cond_broadcast3,
pthread_cond_destroy3,
pthread_cond_init3,
pthread_cond_timedwait3,
pthread_cond_wait3
STANDARDS
The
pthread_cond_signal ();
function conforms to
St -p1003.1-96 .
Index
- NAME
-
- LIBRARY
-
- SYNOPSIS
-
- DESCRIPTION
-
- RETURN VALUES
-
- ERRORS
-
- SEE ALSO
-
- STANDARDS
-