diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-21 20:17:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-21 20:17:47 +0000 |
commit | ca86a763669147f4312d877b322737feb6ff7a3a (patch) | |
tree | 78e788da472202666479287817d462cd78cdfa6b /nptl/sysdeps/unix/sysv/linux | |
parent | 66c79db954a8140593af322a9dc8a1a5f3ac421a (diff) | |
download | glibc-ca86a763669147f4312d877b322737feb6ff7a3a.tar glibc-ca86a763669147f4312d877b322737feb6ff7a3a.tar.gz glibc-ca86a763669147f4312d877b322737feb6ff7a3a.tar.bz2 glibc-ca86a763669147f4312d877b322737feb6ff7a3a.zip |
Update.
2003-07-21 HJ Lu <hongjiu.lu@intel.com>
* elf/ldconfig.c (search_dir): Treat symlink as regular file
if it won't point to itself.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c b/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c index 88acb26e03..ea46cc9023 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c @@ -55,6 +55,7 @@ __pthread_once (pthread_once_t *once_control, void (*init_routine) (void)) " andi. %1,%0,2\n" " bne 2f\n" " stwcx. %4,0,%3\n" + " bne 1b\n" "2: isync" : "=&r" (oldval), "=&r" (tmp), "=m" (*once_control) : "r" (once_control), "r" (newval), "m" (*once_control) |