Searched refs:pthread_join (Results 1 - 25 of 146) sorted by relevance

123456

/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_join.c53 ATF_TC(pthread_join); variable
54 ATF_TC_HEAD(pthread_join, tc)
58 "Checks basic error conditions in pthread_join(3)");
61 ATF_TC_BODY(pthread_join, tc)
66 PTHREAD_REQUIRE(pthread_join(thread, NULL));
92 rv = pthread_join(caller, NULL);
115 PTHREAD_REQUIRE(pthread_join(thread[i], &val));
126 rv = pthread_join(thread[i], NULL);
174 ATF_TP_ADD_TC(tp, pthread_join);
H A Dt_equal.c65 ATF_REQUIRE(pthread_join(t1, NULL) == 0);
66 ATF_REQUIRE(pthread_join(t2, NULL) == 0);
H A Dt_detach.c78 rv = pthread_join(t, NULL);
/freebsd-13-stable/tools/regression/tls/ttls2/
H A Dttls2.c38 pthread_join(t1, 0);
39 pthread_join(t2, 0);
/freebsd-13-stable/tools/regression/tls/ttls4/
H A Dttls4.c36 pthread_join(td, NULL);
41 pthread_join(td, NULL);
/freebsd-13-stable/tools/regression/pthread/unwind/
H A Dcatch_pthread_exit.cpp29 pthread_join(td, NULL);
H A Dthread_normal_exit.cpp25 pthread_join(td, NULL);
H A Dsem_wait_cancel.cpp32 pthread_join(td, NULL);
H A Dcond_wait_cancel.cpp36 pthread_join(td, NULL);
H A Dcond_wait_cancel2.cpp53 pthread_join(td, NULL);
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/tls/
H A Dt_tls_static.c84 pthread_join(t, NULL);
87 pthread_join(t, NULL);
H A Dt_tls_dlopen.c102 pthread_join(t, NULL);
105 pthread_join(t, NULL);
H A Dt_tls_dynamic.c96 pthread_join(t, NULL);
99 pthread_join(t, NULL);
/freebsd-13-stable/contrib/netbsd-tests/rump/rumpkern/h_client/
H A Dh_reconcli.c114 pthread_join(pt, NULL);
115 pthread_join(w1, NULL);
116 pthread_join(w2, NULL);
117 pthread_join(w3, NULL);
118 pthread_join(w4, NULL);
/freebsd-13-stable/lib/libc/tests/stdlib/dynthr_mod/
H A Ddynthr_mod.c69 pthread_join(thr, NULL);
/freebsd-13-stable/contrib/libevent/test/
H A Dregress_thread.h36 #define THREAD_JOIN(th) pthread_join(th, NULL)
/freebsd-13-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_thread.h36 #define THREAD_JOIN(th) pthread_join(th, NULL)
/freebsd-13-stable/contrib/netbsd-tests/fs/ffs/
H A Dt_fifos.c136 pthread_join(ptw1, NULL);
137 pthread_join(ptw2, NULL);
138 pthread_join(ptr1, NULL);
139 pthread_join(ptr2, NULL);
/freebsd-13-stable/contrib/netbsd-tests/fs/vfs/
H A Dt_renamerace.c121 pthread_join(pt1[i], NULL);
123 pthread_join(pt2[i], NULL);
168 pthread_join(pt1, NULL);
169 pthread_join(pt2, NULL);
H A Dt_rmdirrace.c94 res = pthread_join(th2, NULL);
97 res = pthread_join(th1, NULL);
/freebsd-13-stable/contrib/ntp/lib/isc/pthreads/include/isc/
H A Dthread.h47 ((pthread_join((t), (rp)) == 0) ? \
/freebsd-13-stable/tools/regression/pthread/mutex_isowned_np/
H A Dmutex_isowned_np.c67 pthread_join(thr, NULL);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DHostThreadPosix.cpp28 int err = ::pthread_join(m_thread, result);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/
H A Dstart_many_threads.cpp46 pthread_join(t[i], 0);
/freebsd-13-stable/tools/regression/pthread/cv_cancel1/
H A Dcv_cancel1.c75 pthread_join(td, &result);

Completed in 196 milliseconds

123456