diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-17 09:59:14 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-17 10:25:12 +0200 |
commit | 7b300ec7f9a5a271f2169aa6e924184a41b3a9a8 (patch) | |
tree | d13702e187c0e4ece4af31ed8cd1ed38baebbbfd /nptl/libpthread-compat.c | |
parent | c924e44acddc7b1e259da21ee101085006071cef (diff) | |
download | glibc-7b300ec7f9a5a271f2169aa6e924184a41b3a9a8.zip glibc-7b300ec7f9a5a271f2169aa6e924184a41b3a9a8.tar.gz glibc-7b300ec7f9a5a271f2169aa6e924184a41b3a9a8.tar.bz2 |
nptl: Move pthread_setaffinity_np into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/libpthread-compat.c')
-rw-r--r-- | nptl/libpthread-compat.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nptl/libpthread-compat.c b/nptl/libpthread-compat.c index 1806987..a0c0102 100644 --- a/nptl/libpthread-compat.c +++ b/nptl/libpthread-compat.c @@ -70,6 +70,11 @@ compat_symbol (libpthread, __libpthread_version_placeholder_1, __libpthread_version_placeholder, GLIBC_2_3_2); #endif +#if (SHLIB_COMPAT (libpthread, GLIBC_2_3_3, GLIBC_2_3_4)) +compat_symbol (libpthread, __libpthread_version_placeholder_1, + __libpthread_version_placeholder, GLIBC_2_3_3); +#endif + #if (SHLIB_COMPAT (libpthread, GLIBC_2_4, GLIBC_2_5)) compat_symbol (libpthread, __libpthread_version_placeholder_1, __libpthread_version_placeholder, GLIBC_2_4); |