diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-05 17:15:57 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-05 17:19:35 +0200 |
commit | 19cc20ef2e8b9e09429741a3108e55c50758a273 (patch) | |
tree | b59c159eb256c08c4546a2c8d095f590ed31d1fd /nptl/semaphoreP.h | |
parent | ce0b7961ae400e5aeff28d54dc14955199947b74 (diff) | |
download | glibc-19cc20ef2e8b9e09429741a3108e55c50758a273.tar.gz |
nptl: Move sem_clockwait into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
A new placeholder version is added at version GLIBC_2.30, to
preserve that version in libpthread.so.0.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/semaphoreP.h')
-rw-r--r-- | nptl/semaphoreP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/semaphoreP.h b/nptl/semaphoreP.h index 1b786149f4..f030f0e4de 100644 --- a/nptl/semaphoreP.h +++ b/nptl/semaphoreP.h @@ -54,7 +54,7 @@ extern int __new_sem_getvalue (sem_t *sem, int *sval); extern int __sem_clockwait64 (sem_t *sem, clockid_t clockid, const struct __timespec64 *abstime); -libpthread_hidden_proto (__sem_clockwait64) +libc_hidden_proto (__sem_clockwait64) extern int __sem_timedwait64 (sem_t *sem, const struct __timespec64 *abstime); libpthread_hidden_proto (__sem_timedwait64) |