Symbol: pthread_join
crypto/heimdal/appl/gssmask/gssmaestro.c
953
pthread_join(&clients[i]->thr, NULL);
crypto/krb5/src/ccapi/test/simple_lock_test.c
70
pthread_join(thread_id, NULL);
crypto/krb5/src/util/et/t_com_err.c
134
err = pthread_join(t, &t_retval);
crypto/krb5/src/util/support/threads.c
156
|| &pthread_join == 0
crypto/openssh/auth-pam.c
604
pthread_join(ctxt->pam_thread, NULL);
crypto/openssl/crypto/thread/arch/thread_posix.c
72
if (pthread_join(*handle, &thread_retval) != 0)
crypto/openssl/test/drbgtest.c
747
return pthread_join(thread, NULL) == 0;
crypto/openssl/test/threadstest.h
79
return pthread_join(thread, NULL) == 0;
include/pthread.h
221
int pthread_join(pthread_t, void **);
lib/libc/gen/_pthread_stubs.c
286
STUB_FUNC2(pthread_join, PJT_JOIN, int, void *, void *)
lib/libc/tests/resolv/resolv_test.c
284
remaining = (uintptr_t)pthread_join(threads[i], NULL);
lib/libc/tests/stdlib/dynthr_mod/dynthr_mod.c
67
pthread_join(thr, NULL);
lib/libc/tests/stdlib/system_test.c
165
ATF_CHECK_INTEQ(0, pthread_join(thr[i], &ret));
lib/libstdthreads/thrd.c
107
if (pthread_join(thr, &value_ptr) != 0)
lib/libthr/tests/pthread_sigqueue_test.c
109
error = pthread_join(thr[i], NULL);
lib/libthr/tests/umtx_op_test.c
96
ATF_REQUIRE_EQ(0, pthread_join(threads[i], NULL));
lib/libthr/thread/thr_join.c
43
__weak_reference(_thr_join, pthread_join);
lib/libusb/libusb10.c
339
pthread_join(td, &ptr);
tests/sys/capsicum/capmode.cc
661
EXPECT_OK(pthread_join(early_thread, &thread_rval));
tests/sys/capsicum/capmode.cc
674
EXPECT_OK(pthread_join(child_thread, &thread_rval));
tests/sys/capsicum/capmode.cc
690
EXPECT_OK(pthread_join(child_thread2, &thread_rval));
tests/sys/capsicum/capsicum-test.h
44
pthread_join(subthread, NULL);
tests/sys/capsicum/capsicum-test.h
56
pthread_join(subthread, NULL);
tests/sys/capsicum/procdesc.cc
276
EXPECT_OK(pthread_join(child_thread, &data));
tests/sys/cddl/zfs/tests/threadsappend/threadsappend.c
128
if (pthread_join(threads[i], NULL) != 0)
tests/sys/cddl/zfs/tests/txg_integrity/fsync_integrity.c
483
if (pthread_join(threads[i], NULL)){
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
554
if (pthread_join(leader_th, NULL)){
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
559
if (pthread_join(follower_th, NULL)){
tests/sys/file/flock_helper.c
1510
error = pthread_join(thr[i], &res);
tests/sys/fs/fusefs/destroy.cc
206
pthread_join(th0, NULL);
tests/sys/fs/fusefs/destroy.cc
207
pthread_join(th1, NULL);
tests/sys/fs/fusefs/dev_fuse_poll.cc
216
pthread_join(th0, &th_ret);
tests/sys/fs/fusefs/dev_fuse_poll.cc
218
pthread_join(th1, &th_ret);
tests/sys/fs/fusefs/dev_fuse_poll.cc
220
pthread_join(th2, &th_ret);
tests/sys/fs/fusefs/fifo.cc
56
pthread_join(m_child, NULL);
tests/sys/fs/fusefs/interrupt.cc
175
pthread_join(m_child, NULL);
tests/sys/fs/fusefs/interrupt.cc
358
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/interrupt.cc
461
pthread_join(th1, &thr1_value);
tests/sys/fs/fusefs/interrupt.cc
462
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/interrupt.cc
535
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/interrupt.cc
738
pthread_join(th0, NULL);
tests/sys/fs/fusefs/last_local_modify.cc
348
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/last_local_modify.cc
509
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/mockfs.cc
813
pthread_join(m_daemon_id, NULL);
tests/sys/fs/fusefs/notify.cc
177
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
209
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
259
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
304
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
325
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
379
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
430
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
465
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
510
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/notify.cc
565
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/rename.cc
253
pthread_join(th0, NULL);
tests/sys/fs/fusefs/statfs.cc
123
pthread_join(th0, &thr0_value);
tests/sys/fs/fusefs/xattr.cc
181
pthread_join(m_killer_th, NULL);
tests/sys/kern/fdgrowtable_test.c
203
REQUIRE(pthread_join(thread, NULL) == 0);
tests/sys/kern/kcov.c
207
pthread_join(thread, NULL);
tests/sys/kern/kcov.c
377
pthread_join(thread, NULL);
tests/sys/kern/kcov.c
449
pthread_join(thread, NULL);
tests/sys/kern/kcov.c
455
pthread_join(thread, NULL);
tests/sys/kern/ptrace_test.c
1236
CHILD_REQUIRE_EQ(pthread_join(thread, NULL), 0);
tests/sys/kern/ptrace_test.c
3129
CHILD_REQUIRE_EQ(pthread_join(t, NULL), 0);
tests/sys/kern/ptrace_test.c
3534
if (pthread_join(t[0], NULL) != 0)
tests/sys/kern/ptrace_test.c
3536
if (pthread_join(t[1], NULL) != 0)
tests/sys/kern/ptrace_test.c
3778
CHILD_REQUIRE_EQ(pthread_join(threads[0], NULL), 0);
tests/sys/kern/ptrace_test.c
3779
CHILD_REQUIRE_EQ(pthread_join(threads[1], NULL), 0);
tests/sys/kern/shutdown_dgram.c
78
ATF_REQUIRE(pthread_join(t, (void *)&rv) == 0);
tests/sys/kern/socket_msg_waitall.c
109
ATF_REQUIRE(pthread_join(t, NULL) == 0);
tests/sys/kern/socket_splice.c
909
error = pthread_join(thread[0], NULL);
tests/sys/kern/socket_splice.c
912
error = pthread_join(thread[1], NULL);
tests/sys/kern/ssl_sendfile.c
172
ATF_REQUIRE(pthread_join(c->thr, NULL) == 0);
tests/sys/kern/timerfd.c
1273
ATF_REQUIRE(pthread_join(clock_changer, NULL) == 0);
tests/sys/kern/unix_seqpacket_test.c
1311
ATF_REQUIRE(pthread_join(t, NULL) == 0);
tests/sys/kern/unix_seqpacket_test.c
1372
ATF_REQUIRE_EQ(0, pthread_join(writer, NULL));
tests/sys/kern/unix_seqpacket_test.c
1373
ATF_REQUIRE_EQ(0, pthread_join(peeker, NULL));
tests/sys/kern/unix_seqpacket_test.c
398
ATF_REQUIRE_EQ(0, pthread_join(writer, NULL));
tests/sys/kern/unix_seqpacket_test.c
399
ATF_REQUIRE_EQ(0, pthread_join(reader, NULL));
tests/sys/kern/unix_stream.c
245
ATF_REQUIRE(pthread_join(thr, NULL) == 0);
tests/sys/kern/unix_stream.c
437
ATF_REQUIRE(pthread_join(thr, NULL) == 0);
tests/sys/netinet/so_reuseport_lb_test.c
383
ATF_REQUIRE(pthread_join(threads[j - 1], NULL) == 0);
tests/sys/netinet/udp_bindings.c
159
ATF_REQUIRE(pthread_join(tid, NULL) == 0);
tests/sys/netmap/ctrl-api-test.c
1393
ret = pthread_join(th, &thret);
tests/sys/netmap/ctrl-api-test.c
1660
ret = pthread_join(th1, &thret1);
tests/sys/netmap/ctrl-api-test.c
1666
ret = pthread_join(th2, &thret2);
tools/regression/gaithrstress/gaithrstress.c
255
pthread_join(workers[i].w_thread, NULL);
tools/regression/pthread/cv_cancel1/cv_cancel1.c
74
pthread_join(td, &result);
tools/regression/pthread/mutex_isowned_np/mutex_isowned_np.c
65
pthread_join(thr, NULL);
tools/regression/pthread/unwind/catch_pthread_exit.cpp
28
pthread_join(td, NULL);
tools/regression/pthread/unwind/cond_wait_cancel.cpp
35
pthread_join(td, NULL);
tools/regression/pthread/unwind/cond_wait_cancel2.cpp
52
pthread_join(td, NULL);
tools/regression/pthread/unwind/sem_wait_cancel.cpp
31
pthread_join(td, NULL);
tools/regression/pthread/unwind/thread_normal_exit.cpp
24
pthread_join(td, NULL);
tools/regression/tls/ttls2/ttls2.c
37
pthread_join(t1, 0);
tools/regression/tls/ttls2/ttls2.c
38
pthread_join(t2, 0);
tools/regression/tls/ttls4/ttls4.c
34
pthread_join(td, NULL);
tools/regression/tls/ttls4/ttls4.c
39
pthread_join(td, NULL);
tools/test/buf_ring/buf_ring_test.c
306
ret = pthread_join(prod[i], NULL);
tools/test/buf_ring/buf_ring_test.c
309
ret = pthread_join(cons[0], NULL);
tools/test/buf_ring/buf_ring_test.c
312
ret = pthread_join(cons[1], NULL);
tools/test/stress2/testcases/thr1/thr1.c
71
if ((r = pthread_join(threads[i], NULL)) != 0)
tools/test/stress2/testcases/thr2/thr2.c
80
if (pthread_join(threads[i], NULL) != 0)
tools/test/stress2/testcases/thr2/thr2.c
89
if ((r = pthread_join(threads[i], NULL)) != 0)
tools/tools/mctest/mctest.cc
396
if (pthread_join(thread[i], NULL) != 0) {
tools/tools/netmap/lb.c
1088
pthread_join(stat_thread, NULL);
tools/tools/netmap/pkt-gen.c
2803
pthread_join(targs[i].thread, NULL); /* blocking */
tools/tools/netrate/http/http.c
339
if (pthread_join(statep->hwd[i].hwd_thread, NULL)
tools/tools/netrate/httpd/httpd.c
299
if (pthread_join(statep->hts[i].hts_thread, NULL)
tools/tools/netrate/juggle/juggle.c
358
if (pthread_join(thread, NULL) != 0)
tools/tools/tscdrift/tscdrift.c
151
error = pthread_join(child, NULL);
usr.sbin/bhyve/block_if.c
902
pthread_join(bc->bc_btid[i], &jval);
usr.sbin/bhyve/rfb.c
1283
pthread_join(tid, NULL);
usr.sbin/bhyve/snapshot.c
714
rc = pthread_join(spinner_th, NULL);
usr.sbin/bhyve/tpm_intf_crb.c
576
pthread_join(crb->thread, NULL);
usr.sbin/camdd/camdd.c
3380
pthread_join(threads[i], NULL);
usr.sbin/nscd/nscd.c
852
pthread_join(threads[i], NULL);
usr.sbin/pppctl/pppctl.c
627
pthread_join(td.trm, &thread_ret);
usr.sbin/pppctl/pppctl.c
635
pthread_join(mon, &thread_ret);
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
287
(void)pthread_join(tid, NULL);