1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

nptl: Move tss_get into libc

The symbol was moved using scripts/move-symbol-to-libc.py.

__pthread_getspecific@@GLIBC_2.34 is no longer needed after the move,
so it is removed with this commit, too.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
Florian Weimer
2021-05-03 08:12:12 +02:00
parent deb317d510
commit a062ba3836
65 changed files with 83 additions and 69 deletions

View File

@ -63,12 +63,13 @@ ___pthread_getspecific (pthread_key_t key)
return result;
}
versioned_symbol (libc, ___pthread_getspecific, __pthread_getspecific,
GLIBC_2_34);
libc_hidden_ver (___pthread_getspecific, __pthread_getspecific)
versioned_symbol (libc, ___pthread_getspecific, pthread_getspecific,
GLIBC_2_34);
libc_hidden_ver (___pthread_getspecific, __pthread_getspecific)
#ifndef SHARED
strong_alias (___pthread_getspecific, __pthread_getspecific)
#endif
#if OTHER_SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_34)
compat_symbol (libpthread, ___pthread_getspecific, __pthread_getspecific,
GLIBC_2_0);