diff options
Diffstat (limited to 'libpthread/nptl/pthread_atfork.c')
-rw-r--r-- | libpthread/nptl/pthread_atfork.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libpthread/nptl/pthread_atfork.c b/libpthread/nptl/pthread_atfork.c index 6437d6490..e0fc3cf75 100644 --- a/libpthread/nptl/pthread_atfork.c +++ b/libpthread/nptl/pthread_atfork.c @@ -41,13 +41,6 @@ extern void *__dso_handle __attribute__ ((__weak__)); -/* Hide the symbol so that no definition but the one locally in the - executable or DSO is used. */ -int -#ifndef __pthread_atfork -/* Don't mark the compatibility function as hidden. */ -attribute_hidden -#endif __pthread_atfork (prepare, parent, child) void (*prepare) (void); void (*parent) (void); @@ -56,8 +49,4 @@ __pthread_atfork (prepare, parent, child) return __register_atfork (prepare, parent, child, &__dso_handle == NULL ? NULL : __dso_handle); } -#ifndef __pthread_atfork -extern int pthread_atfork (void (*prepare) (void), void (*parent) (void), - void (*child) (void)) attribute_hidden; strong_alias (__pthread_atfork, pthread_atfork) -#endif |