From e80e2f61261741516902b44b13202d3f7673977e Mon Sep 17 00:00:00 2001 From: Timo Teras Date: Fri, 16 Apr 2010 15:34:26 +0300 Subject: Revert "nptl: mark symbols with libc forwarder hidden" This reverts most of commit 1610762362e651f86ca284ac59a1d7ec88034e4e. Marking the symbols hidden is wrong, because libc accesses the pthreads internal symbols for internal locking. Signed-off-by: Timo Teras Signed-off-by: Austin Foxley --- libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S | 1 - libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S | 1 - libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S | 1 - libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S | 1 - libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S | 1 - libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S | 1 - libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S | 1 - libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S | 1 - 8 files changed, 8 deletions(-) (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/sh') diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S index 0884c1381..1242fc2cc 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S @@ -30,7 +30,6 @@ /* int pthread_cond_broadcast (pthread_cond_t *cond) */ .globl __pthread_cond_broadcast .type __pthread_cond_broadcast, @function - .hidden __pthread_cond_broadcast .align 5 __pthread_cond_broadcast: mov.l r10, @-r15 diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S index d2d7c19dc..1c3bacbe6 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S @@ -29,7 +29,6 @@ /* int pthread_cond_signal (pthread_cond_t *cond) */ .globl __pthread_cond_signal .type __pthread_cond_signal, @function - .hidden __pthread_cond_signal .align 5 __pthread_cond_signal: mov.l r8, @-r15 diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S index 7db789f73..3e117564f 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S @@ -30,7 +30,6 @@ const struct timespec *abstime) */ .globl __pthread_cond_timedwait .type __pthread_cond_timedwait, @function - .hidden __pthread_cond_timedwait .align 5 __pthread_cond_timedwait: .LSTARTCODE: diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S index f4f22b645..5a897f6fe 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S @@ -28,7 +28,6 @@ /* int pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex) */ .globl __pthread_cond_wait .type __pthread_cond_wait, @function - .hidden __pthread_cond_wait .align 5 __pthread_cond_wait: .LSTARTCODE: diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S index da6ecfb49..a1477b3ac 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S @@ -29,7 +29,6 @@ .text .globl __pthread_once .type __pthread_once,@function - .hidden __pthread_once .align 5 cfi_startproc __pthread_once: diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S index 5b100d8cd..52fe5de10 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S @@ -29,7 +29,6 @@ .globl __pthread_rwlock_rdlock .type __pthread_rwlock_rdlock,@function - .hidden __pthread_rwlock_rdlock .align 5 __pthread_rwlock_rdlock: mov.l r12, @-r15 diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S index ca7a692f5..bc6c6c233 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S @@ -28,7 +28,6 @@ .globl __pthread_rwlock_unlock .type __pthread_rwlock_unlock,@function - .hidden __pthread_rwlock_unlock .align 5 __pthread_rwlock_unlock: mov.l r12, @-r15 diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S index fa051b1ec..3d37fb486 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S @@ -29,7 +29,6 @@ .globl __pthread_rwlock_wrlock .type __pthread_rwlock_wrlock,@function - .hidden __pthread_rwlock_wrlock .align 5 __pthread_rwlock_wrlock: mov.l r12, @-r15 -- cgit v1.2.3