diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-03 09:10:57 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-03 09:18:12 +0200 |
commit | e7d2d48e560a2091e2a03c527c333cd7b5618b25 (patch) | |
tree | 133ae917524140c08d64b3b81029192970f3136d /nptl/pthreadP.h | |
parent | 2392feb17188fed30bc16fd032e0a43e022b8ead (diff) | |
download | glibc-e7d2d48e560a2091e2a03c527c333cd7b5618b25.tar.gz glibc-e7d2d48e560a2091e2a03c527c333cd7b5618b25.tar.xz glibc-e7d2d48e560a2091e2a03c527c333cd7b5618b25.zip |
nptl: Move pthread_rwlock_timedwrlock into libc
The symbol was moved using scripts/move-symbol-to-libc.py. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index f51a915f1e..00d2cfe764 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -515,7 +515,7 @@ extern int __pthread_rwlock_timedrdlock64 (pthread_rwlock_t *rwlock, libc_hidden_proto (__pthread_rwlock_timedrdlock64) extern int __pthread_rwlock_timedwrlock64 (pthread_rwlock_t *rwlock, const struct __timespec64 *abstime); -libpthread_hidden_proto (__pthread_rwlock_timedwrlock64) +libc_hidden_proto (__pthread_rwlock_timedwrlock64) extern int __pthread_mutex_clocklock64 (pthread_mutex_t *mutex, clockid_t clockid, const struct __timespec64 *abstime); |