Searched refs:thrd (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/test/libc-tests/tests/
H A Dc11_threads.c188 thrd_t thrd; local
190 VERIFY3S(thrd_create(&thrd, cthr_test_detach_thr0, NULL), ==,
192 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success);
195 VERIFY3S(thrd_create(&thrd, cthr_test_detach_thr1, NULL), ==,
197 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success);
354 thrd_t thrd; local
359 VERIFY3S(thrd_create(&thrd, cthr_test_mtx_busy_thr, &mtx), ==,
361 VERIFY3S(thrd_join(thrd, NULL), ==, thrd_success);
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dc11_thr.c234 thrd_join(thrd_t thrd, int *res) argument
238 if (pthread_join(thrd, &es) != 0)

Completed in 57 milliseconds