From: Richard Henderson Date: Wed, 30 May 2012 18:15:58 +0000 (-0700) Subject: alpha: Use hidden_def for pthread_once X-Git-Tag: glibc-2.16-ports-before-merge~53 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d496e021351ee9f85ec87d3ee152d1914422909b;p=thirdparty%2Fglibc.git alpha: Use hidden_def for pthread_once --- diff --git a/ChangeLog.alpha b/ChangeLog.alpha index de1dc8ef9a7..f87c9d69bea 100644 --- a/ChangeLog.alpha +++ b/ChangeLog.alpha @@ -1,5 +1,8 @@ 2012-05-30 Richard Henderson + * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Replace + _internal alias by hidden_def. + * sysdeps/unix/sysv/linux/alpha/adjtime.c: Remove __ASSUME_TIMEVAL64. * sysdeps/unix/sysv/linux/alpha/getitimer.S: Remove file. * sysdeps/unix/sysv/linux/alpha/getrusage.S: Remove file. diff --git a/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c b/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c index 4b25200c549..1b701b3e712 100644 --- a/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c +++ b/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c @@ -92,4 +92,4 @@ __pthread_once (pthread_once_t *once_control, void (*init_routine) (void)) return 0; } weak_alias (__pthread_once, pthread_once) -strong_alias (__pthread_once, __pthread_once_internal) +hidden_def (__pthread_once)