Searched refs:thrd (Results 1 – 2 of 2) sorted by relevance
/titanic_44/usr/src/test/libc-tests/tests/ |
H A D | c11_threads.c | 188 thrd_t thrd; in cthr_test_detach() local 190 VERIFY3S(thrd_create(&thrd, cthr_test_detach_thr0, NULL), ==, in cthr_test_detach() 192 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success); in cthr_test_detach() 195 VERIFY3S(thrd_create(&thrd, cthr_test_detach_thr1, NULL), ==, in cthr_test_detach() 197 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success); in cthr_test_detach() 354 thrd_t thrd; in cthr_test_mtx_busy() local 359 VERIFY3S(thrd_create(&thrd, cthr_test_mtx_busy_thr, &mtx), ==, in cthr_test_mtx_busy() 361 VERIFY3S(thrd_join(thrd, NULL), ==, thrd_success); in cthr_test_mtx_busy()
|
/titanic_44/usr/src/lib/libc/port/threads/ |
H A D | c11_thr.c | 234 thrd_join(thrd_t thrd, int *res) in thrd_join() argument 238 if (pthread_join(thrd, &es) != 0) in thrd_join()
|