Searched defs:thrd (Results 1 - 2 of 2) sorted by relevance
/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | c11_thr.c | 234 thrd_join(thrd_t thrd, int *res) argument 238 if (pthread_join(thrd, &es) != 0)
|
/illumos-gate/usr/src/test/libc-tests/tests/ |
H A D | c11_threads.c | 188 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);
|
Completed in 57 milliseconds