Searched defs:cnd (Results 1 - 2 of 2) sorted by relevance
/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | c11_thr.c | 47 cnd_broadcast(cnd_t *cnd) argument 51 ret = pthread_cond_broadcast(cnd); 59 cnd_destroy(cnd_t *cnd) argument 61 if (pthread_cond_destroy(cnd) != 0) 66 cnd_init(cnd_t *cnd) argument 70 ret = pthread_cond_init(cnd, NULL); 77 cnd_signal(cnd_t *cnd) argument 81 ret = pthread_cond_signal(cnd); 90 cnd_timedwait(cnd_t *_RESTRICT_KYWD cnd, mtx_t *_RESTRICT_KYWD mtx, argument 95 ret = pthread_cond_timedwait(cnd, mt 105 cnd_wait(cnd_t *cnd, mtx_t *mtx) argument [all...] |
/illumos-gate/usr/src/test/libc-tests/tests/ |
H A D | c11_threads.c | 304 cnd_t cnd; local 310 VERIFY3S(cnd_init(&cnd), ==, thrd_success); 313 VERIFY3S(cnd_timedwait(&cnd, &mtx, &ts), ==, thrd_timedout); 317 cnd_destroy(&cnd);
|
Completed in 60 milliseconds