Searched refs:thrd (Results 1 – 2 of 2) sorted by relevance
/illumos-gate/usr/src/test/libc-tests/tests/ |
H A D | c11_threads.c | 187 thrd_t thrd; in cthr_test_detach() local 189 VERIFY3S(thrd_create(&thrd, cthr_test_detach_thr0, NULL), ==, in cthr_test_detach() 191 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success); in cthr_test_detach() 194 VERIFY3S(thrd_create(&thrd, cthr_test_detach_thr1, NULL), ==, in cthr_test_detach() 196 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success); in cthr_test_detach() 353 thrd_t thrd; in cthr_test_mtx_busy() local 358 VERIFY3S(thrd_create(&thrd, cthr_test_mtx_busy_thr, &mtx), ==, in cthr_test_mtx_busy() 360 VERIFY3S(thrd_join(thrd, NULL), ==, thrd_success); in cthr_test_mtx_busy()
|
/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | c11_thr.c | 235 thrd_join(thrd_t thrd, int *res) in thrd_join() argument 239 if (pthread_join(thrd, &es) != 0) in thrd_join()
|