Wednesday, November 30, 2016

C Thread Condition variable Functions

Condition variable Functions:
cnd_init(C11) int cnd_init( cnd_t* cond );
cnd_signal(C11) int cnd_signal( cnd_t *cond );
cnd_broadcast(C11) int cnd_broadcast( cnd_t *cond );
cnd_wait(C11) int cnd_wait( cnd_t* cond, mtx_t* mutex );
cnd_timedwait(C11) int cnd_timedwait( cnd_t* restrict cond, mtx_t* restrict mutex, const struct timespec* restrict time_point );
cnd_destroy(C11) void cnd_destroy( cnd_t* cond );

threads.h
Initialization Functions
Condition variable Functions
Mutex Functions
Thread Functions
Thread-specific storage Functions


Related topics:
Library Functions in C   |   Standard Library in C   |   Header Files in C   |   Functions in C   |   Keywords in C   |   Data Types in C   |   Pointers in C

List of topics: C Programming

No comments:

Post a Comment