Searched refs:pthread_create (Results 76 - 100 of 204) sorted by relevance

123456789

/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_rwlock.c92 PTHREAD_REQUIRE(pthread_create(&t, NULL, do_nothing, NULL));
H A Dt_condwait.c121 ATF_REQUIRE_EQ(pthread_create(&child, NULL, run, &clck), 0);
H A Dh_resolv.c137 if (pthread_create(&self, NULL, resolvloop, nhosts) != 0)
138 err(1, "pthread_create");
/freebsd-13-stable/tests/sys/kern/
H A Dkcov.c172 pthread_create(&thread, NULL,
321 pthread_create(&thread, NULL, thread_test_helper, buf);
378 pthread_create(&thread, NULL, multi_thread_test_helper, &data);
384 pthread_create(&thread, NULL, multi_thread_test_helper, &data);
H A Dsendfile_helper.c126 error = pthread_create(&pt, NULL, server, (void *)(uintptr_t)len);
128 errc(1, error, "pthread_create");
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp218 INTERCEPTOR(int, pthread_create, void *th, void *attr, void *(*callback)(void*),
222 GetPageSizeCached(), "pthread_create"));
224 int res = REAL(pthread_create)(UntagPtr(th), UntagPtr(attr),
344 INTERCEPT_FUNCTION(pthread_create);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp208 INTERCEPTOR(int, pthread_create, pthread_t *thread,
241 return REAL(pthread_create)(thread, attr, thread_start, tinfo);
253 INTERCEPT_FUNCTION(pthread_create);
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Ddev_fuse_poll.cc208 ASSERT_EQ(0, pthread_create(&th0, NULL, statter,
211 ASSERT_EQ(0, pthread_create(&th1, NULL, statter,
213 ASSERT_EQ(0, pthread_create(&th2, NULL, statter,
H A Dfifo.cc101 ASSERT_EQ(0, pthread_create(&m_child, NULL, writer, &fd))
199 ASSERT_EQ(0, pthread_create(&m_child, NULL, socket_writer, NULL))
/freebsd-13-stable/cddl/contrib/opensolaris/head/
H A Dthread.h97 ret = pthread_create(new_thread_ID, &attr, start_func, arg);
/freebsd-13-stable/contrib/ofed/opensm/complib/
H A Dcl_threadpool.c107 if (pthread_create(&p_thread_pool->tid[i], NULL,
/freebsd-13-stable/usr.bin/mkuzip/
H A Dmkuz_conveyor.c123 r = pthread_create(&cp->wthreads[i], NULL, cworker, (void *)cwp);
125 errx(1, "mkuz_conveyor_ctor: pthread_create() failed");
/freebsd-13-stable/contrib/capsicum-test/
H A Dcapsicum-test.h39 pthread_create(&subthread, NULL, WaitingThreadFn, NULL);
51 pthread_create(&subthread, NULL, WaitingThreadFn, NULL);
/freebsd-13-stable/contrib/netbsd-tests/lib/semaphore/
H A Dsem.c136 pthread_create(&pt, NULL, hthread, semmarit);
187 pthread_create(&pt, NULL, hthread, semmarit);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp432 INTERCEPTOR(int, pthread_create, void *th, void *attr,
450 // Ignore all allocations made by pthread_create: thread stack/TLS may be
455 res = REAL(pthread_create)(th, attr, __lsan_thread_start_func, &p);
510 INTERCEPT_FUNCTION(pthread_create);
/freebsd-13-stable/contrib/processor-trace/include/posix/
H A Dthreads.h98 errcode = pthread_create(&thrd->thread, NULL, thrd_routine, args);
/freebsd-13-stable/contrib/jemalloc/src/
H A Dmutex.c26 * We intercept pthread_create() calls in order to toggle isthreaded if the
32 pthread_create(pthread_t *__restrict thread, function
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp208 INTERCEPTOR(int, pthread_create, void *thread,
223 // Ignore all allocations made by pthread_create: thread stack/TLS may be
230 result = REAL(pthread_create)(thread, attr, asan_thread_start, &param);
691 ASAN_INTERCEPT_FUNC_VER(pthread_create, ASAN_PTHREAD_CREATE_VERSION);
693 ASAN_INTERCEPT_FUNC(pthread_create);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.h85 return REAL(pthread_create)(th, attr, callback, param); \
/freebsd-13-stable/contrib/llvm-project/libcxx/src/
H A Dthread.cpp31 #pragma weak pthread_create // Do not create libpthread dependency macro
/freebsd-13-stable/sys/contrib/zstd/examples/
H A Dstreaming_compression_thread_pool.c167 pthread_create (&threads[i], NULL, compressFile_orDie, &args[i]);
/freebsd-13-stable/contrib/netbsd-tests/fs/common/
H A Dfstest_lfs.c168 res = pthread_create(&args->ta_cleanerthread, NULL, cleaner, args);
/freebsd-13-stable/contrib/netbsd-tests/fs/puffs/
H A Dt_fuzz.c226 pthread_create(&pt, NULL, respondthread, NULL);
/freebsd-13-stable/contrib/netbsd-tests/rump/rumpkern/h_client/
H A Dh_stresscli.c171 if (pthread_create(&pt[j], NULL,
/freebsd-13-stable/tools/tools/tscdrift/
H A Dtscdrift.c134 error = pthread_create(&child, NULL, thread_main,
137 errc(1, error, "pthread_create");

Completed in 314 milliseconds

123456789