diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-05-30 09:57:22 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-05-30 09:57:22 +0000 |
commit | d7a10f9610f4a1ef8abd678f85fbcbc05874b856 (patch) | |
tree | 512ec925c7b80b30c50a1e4acba3370de9560fd4 /sysdeps | |
parent | 0387d09372bfd3ee335c95de99a1c6dbea320af0 (diff) | |
download | glibc-d7a10f9610f4a1ef8abd678f85fbcbc05874b856.tar glibc-d7a10f9610f4a1ef8abd678f85fbcbc05874b856.tar.gz glibc-d7a10f9610f4a1ef8abd678f85fbcbc05874b856.tar.bz2 glibc-d7a10f9610f4a1ef8abd678f85fbcbc05874b856.zip |
Replace __pthread_once_internal alias by hidden_def for ARM.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c b/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c index 5c6d26d3e2..eea1287fd1 100644 --- a/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c +++ b/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2004-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -86,7 +86,7 @@ __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) #if defined(__USING_SJLJ_EXCEPTIONS__) && !defined(__PIC__) /* When statically linked, if pthread_create is used, this file |