diff options
Diffstat (limited to 'sysdeps/generic/pt-rwlock-unlock.c')
-rw-r--r-- | sysdeps/generic/pt-rwlock-unlock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/generic/pt-rwlock-unlock.c b/sysdeps/generic/pt-rwlock-unlock.c index dcf1d3e..b45ad23 100644 --- a/sysdeps/generic/pt-rwlock-unlock.c +++ b/sysdeps/generic/pt-rwlock-unlock.c @@ -25,7 +25,7 @@ are no threads waiting for a write lock, rescheduling the reader threads. */ int -pthread_rwlock_unlock (pthread_rwlock_t *rwlock) +__pthread_rwlock_unlock (pthread_rwlock_t *rwlock) { struct __pthread *wakeup; @@ -96,3 +96,4 @@ pthread_rwlock_unlock (pthread_rwlock_t *rwlock) __pthread_spin_unlock (&rwlock->__lock); return 0; } +strong_alias (__pthread_rwlock_unlock, pthread_rwlock_unlock); |