Searched refs:pthread_create (Results 126 - 150 of 204) sorted by relevance

123456789

/freebsd-13-stable/contrib/ntp/
H A Dconfigure19303 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_create in default libraries" >&5
19304 $as_echo_n "checking for pthread_create in default libraries... " >&6; }
19354 status = pthread_create( &t, &attr, task, NULL );
19361 status = pthread_create( &t, pthread_attr_default, task, NULL );
19437 status = pthread_create( &t, &attr, task, NULL );
19444 status = pthread_create( &t, pthread_attr_default, task, NULL );
19540 status = pthread_create( &t, &attr, task, NULL );
19547 status = pthread_create( &t, pthread_attr_default, task, NULL );
19623 status = pthread_create( &t, &attr, task, NULL );
19630 status = pthread_create(
[all...]
/freebsd-13-stable/contrib/openbsm/bin/auditdistd/
H A Dreceiver.c707 error = pthread_create(&td, NULL, recv_thread, adhost);
709 error = pthread_create(&td, NULL, disk_thread, adhost);
/freebsd-13-stable/usr.sbin/pppctl/
H A Dpppctl.c626 pthread_create(&td.trm, NULL, Terminal, &td);
627 pthread_create(&mon, NULL, Monitor, &td);
/freebsd-13-stable/contrib/xz/src/common/
H A Dmythread.h163 const int ret = pthread_create(thread, NULL, func, arg);
/freebsd-13-stable/lib/libc/tests/resolv/
H A Dresolv_test.c247 rc = pthread_create(&t, NULL, resolvloop, args);
248 ATF_REQUIRE_MSG(rc == 0, "pthread_create failed: %s", strerror(rc));
/freebsd-13-stable/contrib/lib9p/transport/
H A Dsocket.c185 err = pthread_create(&sc->ls_thread, NULL, l9p_socket_thread, sc);
188 "pthread_create (for connection from %s:%s): error %s",
/freebsd-13-stable/sys/contrib/openzfs/cmd/zed/agents/
H A Dzfs_agents.c390 if (pthread_create(&g_agents_tid, NULL, zfs_agent_consumer_thread,
/freebsd-13-stable/sys/contrib/openzfs/cmd/zed/
H A Dzed_exec.c332 if (pthread_create(&_reap_children_tid, NULL,
/freebsd-13-stable/contrib/netbsd-tests/fs/puffs/
H A Dt_basic.c172 pthread_create(&pt, NULL, dofifow, (void *)(uintptr_t)fd);
/freebsd-13-stable/sbin/hastd/
H A Dsecondary.c500 error = pthread_create(&td, NULL, ctrl_thread, res);
506 error = pthread_create(&td, NULL, recv_thread, res);
508 error = pthread_create(&td, NULL, disk_thread, res);
H A Dprimary.c1053 error = pthread_create(&td, NULL, guard_thread, res);
1063 error = pthread_create(&td, NULL, ctrl_thread, res);
1089 error = pthread_create(&td, NULL, ggate_recv_thread, res);
1091 error = pthread_create(&td, NULL, local_send_thread, res);
1093 error = pthread_create(&td, NULL, remote_send_thread, res);
1095 error = pthread_create(&td, NULL, remote_recv_thread, res);
1097 error = pthread_create(&td, NULL, ggate_send_thread, res);
/freebsd-13-stable/contrib/capsicum-test/
H A Dcapmode.cc602 EXPECT_OK(pthread_create(&early_thread, NULL, thread_fn,
673 EXPECT_OK(pthread_create(&child_thread, NULL, thread_fn,
689 EXPECT_OK(pthread_create(&child_thread2, NULL, thread_fn,
H A Dprocdesc.cc260 EXPECT_OK(pthread_create(&child_subthread, NULL, SubThreadMain,
290 EXPECT_OK(pthread_create(&child_thread, NULL, ThreadMain, NULL));
/freebsd-13-stable/crypto/openssh/
H A Dauth-pam.c133 #define pthread_create fake_pthread_create macro
191 pthread_create(sp_pthread_t *thread, const void *attr, function
775 if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
/freebsd-13-stable/tests/sys/kern/
H A Dptrace_test.c1245 CHILD_REQUIRE_EQ(pthread_create(&thread, NULL, simple_thread, NULL), 0);
1285 * Wait for the new thread to arrive. pthread_create() might
1410 CHILD_REQUIRE_EQ(pthread_create(&thread, NULL, exec_thread, NULL), 0);
2027 CHILD_REQUIRE(pthread_create(&t, NULL, mask_usr1_thread,
2130 CHILD_REQUIRE(pthread_create(&t, NULL, mask_usr1_thread,
3101 CHILD_REQUIRE_EQ(pthread_create(&t, NULL, signal_thread,
3253 CHILD_REQUIRE(pthread_create(&t, NULL,
3263 CHILD_REQUIRE(pthread_create(&t, NULL,
3469 if (pthread_create(&t[0], NULL, flock_thread, &cfd) != 0)
3471 if (pthread_create(
[all...]
/freebsd-13-stable/sbin/ggate/ggatec/
H A Dggatec.c401 error = pthread_create(&recvtd, NULL, recv_thread, NULL);
404 g_gate_xlog("pthread_create(recv_thread): %s.",
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1028 INTERCEPTOR(int, pthread_create, void *th, void *attr, void *(*callback)(void*),
1041 int res = REAL(pthread_create)(th, attr, MsanThreadStartFunc, t);
1694 INTERCEPT_FUNCTION_VER(pthread_create, "GLIBC_2.2");
1696 INTERCEPT_FUNCTION(pthread_create);
/freebsd-13-stable/sys/contrib/openzfs/lib/libtpool/
H A Dthread_pool.c236 error = pthread_create(&thread, &tpool->tp_attr, tpool_worker, tpool);
576 break; /* pthread_create() failed */
/freebsd-13-stable/contrib/ofed/librdmacm/examples/
H A Dmckey.c519 pthread_create(&test.cmathread, NULL, cma_thread, NULL);
/freebsd-13-stable/usr.sbin/ngctl/
H A Dmain.c301 pthread_create(&monitor, NULL, Monitor, NULL);
/freebsd-13-stable/tools/tools/mctest/
H A Dmctest.cc373 if (pthread_create(&thread[i], NULL, server, &args[i]) != 0) {
/freebsd-13-stable/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c1640 ret = pthread_create (&thread, NULL, (PTHREAD_CALLBACK) Function, Context);
/freebsd-13-stable/tools/tools/netrate/juggle/
H A Djuggle.c328 if (pthread_create(&thread, NULL, juggling_thread, &fd2) != 0)
329 err(-1, "thread_juggle: pthread_create");
/freebsd-13-stable/sbin/ggate/ggated/
H A Dggated.c587 error = pthread_create(&td, NULL, send_thread, conn);
589 g_gate_xlog("pthread_create(send_thread): %s.",
592 error = pthread_create(&td, NULL, recv_thread, conn);
594 g_gate_xlog("pthread_create(recv_thread): %s.",
/freebsd-13-stable/usr.sbin/bhyve/
H A Drfb.c969 perror = pthread_create(&tid, NULL, rfb_wr_thr, rc);
1139 pthread_create(&rc->tid, NULL, rfb_thr, rc);

Completed in 405 milliseconds

123456789