threads.h | 58 typedef pthread_cond_t cnd_t; typedef in typeref:typename:pthread_cond_t 88 int cnd_broadcast(cnd_t *); 89 void cnd_destroy(cnd_t *); 90 int cnd_init(cnd_t *); 91 int cnd_signal(cnd_t *); 92 int cnd_timedwait(cnd_t * __restrict, mtx_t * __restrict, 94 int cnd_wait(cnd_t *, mtx_t *);
|