Symbol: pthread_atfork
include/pthread.h
186
int pthread_atfork(void (*)(void), void (*)(void), void (*)(void));
lib/csu/crtbeginS.c
86
int pthread_atfork(void (*)(void), void (*)(void), void (*)(void))
lib/libc/hidden/pthread.h
23
PROTO_STD_DEPRECATED(pthread_atfork);
lib/libcrypto/arc4random/arc4random_aix.h
35
#define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
lib/libcrypto/arc4random/arc4random_freebsd.h
41
#define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
lib/libcrypto/arc4random/arc4random_hpux.h
35
#define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
lib/libcrypto/arc4random/arc4random_linux.h
40
#define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
lib/libcrypto/arc4random/arc4random_netbsd.h
41
#define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
lib/libcrypto/arc4random/arc4random_osx.h
35
#define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
lib/libcrypto/arc4random/arc4random_solaris.h
35
#define _ARC4_ATFORK(f) pthread_atfork(NULL, NULL, (f))
regress/lib/csu/callbacks/libaa/aa.c
48
pthread_atfork(atfork_prepare, atfork_parent, atfork_child);
regress/lib/csu/callbacks/libab/ab.c
48
pthread_atfork(atfork_prepare, atfork_parent, atfork_child);
regress/lib/csu/callbacks/pthread_atfork/pthread_atfork_test.c
77
int _r = pthread_atfork(prep, parent, child); \
regress/lib/libpthread/pthread_atfork/pthread_atfork.c
60
CHECKr(pthread_atfork(prepare1, parent1, child1));
regress/lib/libpthread/pthread_atfork/pthread_atfork.c
85
CHECKr(pthread_atfork(prepare2, parent2, child2));