Searched refs:pthread_join (Results 101 - 125 of 146) sorted by relevance

123456

/freebsd-13-stable/contrib/capsicum-test/
H A Dcapmode.cc663 EXPECT_OK(pthread_join(early_thread, &thread_rval));
676 EXPECT_OK(pthread_join(child_thread, &thread_rval));
692 EXPECT_OK(pthread_join(child_thread2, &thread_rval));
H A Dprocdesc.cc292 EXPECT_OK(pthread_join(child_thread, &data));
/freebsd-13-stable/crypto/openssh/
H A Dauth-pam.c135 #define pthread_join fake_pthread_join macro
225 pthread_join(sp_pthread_t thread, void **value) function
589 pthread_join(ctxt->pam_thread, NULL);
/freebsd-13-stable/lib/libc/gen/
H A D_pthread_stubs.c283 STUB_FUNC2(pthread_join, PJT_JOIN, int, void *, void *)
/freebsd-13-stable/tools/tools/mctest/
H A Dmctest.cc398 if (pthread_join(thread[i], NULL) != 0) {
/freebsd-13-stable/tools/tools/netrate/juggle/
H A Djuggle.c360 if (pthread_join(thread, NULL) != 0)
361 err(-1, "thread_juggle: pthread_join");
/freebsd-13-stable/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_diff.c790 (void) pthread_join(tid, NULL);
801 (void) pthread_join(tid, NULL);
/freebsd-13-stable/tests/sys/kern/
H A Dunix_seqpacket_test.c382 ATF_REQUIRE_EQ(0, pthread_join(writer, NULL));
383 ATF_REQUIRE_EQ(0, pthread_join(reader, NULL));
H A Dptrace_test.c1246 CHILD_REQUIRE_EQ(pthread_join(thread, NULL), 0);
3139 CHILD_REQUIRE_EQ(pthread_join(t, NULL), 0);
3473 if (pthread_join(t[0], NULL) != 0)
3475 if (pthread_join(t[1], NULL) != 0)
3717 CHILD_REQUIRE_EQ(pthread_join(threads[0], NULL), 0);
3718 CHILD_REQUIRE_EQ(pthread_join(threads[1], NULL), 0);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1067 INTERCEPTOR(int, pthread_join, void *th, void **retval) {
1069 int res = REAL(pthread_join)(th, retval);
1704 INTERCEPT_FUNCTION(pthread_join);
/freebsd-13-stable/tests/sys/netmap/
H A Dctrl-api-test.c1341 ret = pthread_join(th, &thret);
1343 printf("pthread_join(kloop): %s\n", strerror(ret));
1599 ret = pthread_join(th1, &thret1);
1602 printf("pthread_join(kloop1): %s\n", strerror(ret));
1605 ret = pthread_join(th2, &thret2);
1608 printf("pthread_join(kloop2): %s %d\n", strerror(ret), ret);
/freebsd-13-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctfmerge.c729 pthread_join(wq->wq_thread[i], NULL);
/freebsd-13-stable/sys/contrib/openzfs/cmd/zed/agents/
H A Dzfs_mod.c935 (void) pthread_join(g_zfs_tid, NULL);
/freebsd-13-stable/usr.sbin/nscd/
H A Dnscd.c856 pthread_join(threads[i], NULL);
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp1080 status = pthread_join(th->th.th_info.ds.ds_thread, &exit_val);
1105 status = pthread_join(th->th.th_info.ds.ds_thread, &exit_val);
/freebsd-13-stable/tests/sys/cddl/zfs/tests/txg_integrity/
H A Dtxg_integrity.c555 if (pthread_join(leader_th, NULL)){
556 perror("pthread_join leader");
560 if (pthread_join(follower_th, NULL)){
561 perror("pthread_join follower");
/freebsd-13-stable/crypto/heimdal/appl/gssmask/
H A Dgssmaestro.c953 pthread_join(&clients[i]->thr, NULL);
/freebsd-13-stable/contrib/jemalloc/src/
H A Dbackground_thread.c338 if (pthread_join(info->thread, &ret)) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cpp687 void internal_join_thread(void *th) { pthread_join((pthread_t)th, 0); }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp334 // this is not true is: pthread_join -> munmap(stack). It's fine
1021 TSAN_INTERCEPTOR(int, pthread_join, void *th, void **ret) {
1022 SCOPED_INTERCEPTOR_RAW(pthread_join, th, ret);
1025 int res = BLOCK_REAL(pthread_join)(th, ret);
1991 // i.e. pthread_join()->munmap()).
2673 TSAN_INTERCEPT(pthread_join);
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgoogletest-port-test.cc322 ASSERT_EQ(0, pthread_join(thread_id, &dummy));
/freebsd-13-stable/sys/contrib/openzfs/include/sys/
H A Dzfs_context.h236 #define thread_join(t) pthread_join((pthread_t)(t), NULL)
/freebsd-13-stable/contrib/ntp/ntpd/
H A Dntpd.c380 pthread_join(thread, NULL);
/freebsd-13-stable/usr.sbin/bhyve/
H A Dblock_if.c778 pthread_join(bc->bc_btid[i], &jval);
H A Drfb.c1008 pthread_join(tid, NULL);

Completed in 424 milliseconds

123456