mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
nptl: Move mtx_timedlock into libc
The symbol was moved using scripts/move-symbol-to-libc.py. The __pthread_mutex_timedlock@@GLIBC_PRIVATE export is no longer needed, so it is removed with this commit. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@@ -631,11 +631,13 @@ ___pthread_mutex_timedlock (pthread_mutex_t *mutex,
|
||||
return __pthread_mutex_timedlock64 (mutex, &ts64);
|
||||
}
|
||||
#endif /* __TIMESPEC64 != 64 */
|
||||
versioned_symbol (libc, ___pthread_mutex_timedlock,
|
||||
__pthread_mutex_timedlock, GLIBC_PRIVATE);
|
||||
libc_hidden_ver (___pthread_mutex_timedlock, __pthread_mutex_timedlock)
|
||||
versioned_symbol (libc, ___pthread_mutex_timedlock,
|
||||
pthread_mutex_timedlock, GLIBC_2_34);
|
||||
libc_hidden_ver (___pthread_mutex_timedlock, __pthread_mutex_timedlock)
|
||||
#ifndef SHARED
|
||||
strong_alias (___pthread_mutex_timedlock, __pthread_mutex_timedlock)
|
||||
#endif
|
||||
|
||||
#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_2, GLIBC_2_34)
|
||||
compat_symbol (libpthread, ___pthread_mutex_timedlock,
|
||||
pthread_mutex_timedlock, GLIBC_2_2);
|
||||
|
Reference in New Issue
Block a user