Home
last modified time | relevance | path

Searched refs:pthread_atfork (Results 1 – 25 of 25) sorted by relevance

/freebsd/lib/libthr/thread/
H A Dthr_fork.c76 __weak_reference(_thr_atfork, pthread_atfork);
85 struct pthread_atfork *af; in _thr_atfork()
87 if ((af = malloc(sizeof(struct pthread_atfork))) == NULL) in _thr_atfork()
113 struct pthread_atfork *af, *af1; in __pthread_cxa_finalize()
153 struct pthread_atfork *af; in thr_fork_impl()
H A Dthr_private.h84 typedef TAILQ_HEAD(atfork_head, pthread_atfork) atfork_head;
255 struct pthread_atfork { struct
256 TAILQ_ENTRY(pthread_atfork) qe;
/freebsd/lib/libthr/tests/
H A Datfork_test.c44 pthread_atfork(prefork, NULL, NULL); in registrar()
124 pthread_atfork(basic_prepare, basic_parent, basic_child); in ATF_TC_BODY()
241 pthread_atfork(multi_prepare1, multi_parent1, multi_child1); in ATF_TC_BODY()
242 pthread_atfork(multi_prepare2, multi_parent2, multi_child2); in ATF_TC_BODY()
/freebsd/crypto/openssl/doc/man3/
H A DOPENSSL_fork_prepare.pod34 Platforms with fork(2) but without pthread_atfork(3) will probably need
42 according to the calling sequence described by the pthread_atfork(3)
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dguarded_pool_allocator_posix.cpp113 pthread_atfork(Disable, Enable, Enable); in installAtFork()
/freebsd/sys/contrib/openzfs/lib/libuutil/
H A Duu_misc.c254 (void) pthread_atfork(uu_lockup, uu_release, uu_release_child); in uu_init()
H A Dlibuutil.abi2254 <function-decl name='pthread_atfork' visibility='default' binding='global' size-in-bits='64'>
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp396 INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(), in INTERCEPTOR()
399 // REAL(pthread_atfork) cannot be called due to symbol indirections at least in INTERCEPTOR()
403 #define LSAN_MAYBE_INTERCEPT_PTHREAD_ATFORK INTERCEPT_FUNCTION(pthread_atfork)
394 INTERCEPTOR(int,pthread_atfork,void (* prepare)(),void (* parent)(),void (* child)()) INTERCEPTOR() argument
/freebsd/lib/libthr/
H A Dpthread.map8 pthread_atfork;
/freebsd/include/
H A Dpthread.h152 int pthread_atfork(void (*)(void), void (*)(void), void (*)(void));
/freebsd/lib/libc/include/
H A Dnamespace.h86 #define pthread_atfork _pthread_atfork macro
H A Dun-namespace.h67 #undef pthread_atfork
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_linux.cpp319 pthread_atfork( in InstallAtForkHandler()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp752 INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(), argument
870 ASAN_INTERCEPT_FUNC(pthread_atfork);
/freebsd/lib/libc/gen/
H A DSymbol.map3 pthread_atfork;
H A D_pthread_stubs.c259 STUB_FUNC3(pthread_atfork, PJT_ATFORK, int, void *, void *, void*)
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_linux.cpp557 pthread_atfork( in HwasanInstallAtForkHandler()
/freebsd/share/man/man3/
H A DMakefile394 pthread_atfork.3 \
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc243 pthread_atfork(SCUDO_PREFIX(malloc_disable), SCUDO_PREFIX(malloc_enable),
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-death-test-test.cc486 ASSERT_EQ(0, pthread_atfork(&SetPthreadFlag, nullptr, nullptr)); in TEST_F()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp93 extern "C" int pthread_atfork(void (*prepare)(void), void (*parent)(void),
3065 if (pthread_atfork(atfork_prepare, atfork_parent, atfork_child)) { in InitializeInterceptors()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp1392 int status = pthread_atfork(__kmp_atfork_prepare, __kmp_atfork_parent, in __kmp_register_atfork()
/freebsd/contrib/jemalloc/src/
H A Djemalloc.c1588 if (pthread_atfork(jemalloc_prefork, jemalloc_postfork_parent, in malloc_init_hard_recursible()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Dlibc_ubuntu1404_abilist.txt2538 fun:pthread_atfork=uninstrumented
/freebsd/contrib/googletest/docs/
H A Dadvanced.md638 handlers registered with `pthread_atfork(3)`.