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 | 8bc6a6d73c7f9004bfa3e81a717300e6d39ac448 (patch) | |
tree | 313572811e475ce4c17c2cf5df127df6b5a22952 /nptl/Versions | |
parent | 7b300ec7f9a5a271f2169aa6e924184a41b3a9a8 (diff) | |
download | glibc-8bc6a6d73c7f9004bfa3e81a717300e6d39ac448.tar.gz glibc-8bc6a6d73c7f9004bfa3e81a717300e6d39ac448.tar.xz glibc-8bc6a6d73c7f9004bfa3e81a717300e6d39ac448.zip |
nptl: Move pthread_setname_np into libc
The symbol was moved using scripts/move-symbol-to-libc.py. Add __libpthread_version_placeholder@@GLIBC_2.12 for the targets that need it. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/Versions')
-rw-r--r-- | nptl/Versions | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nptl/Versions b/nptl/Versions index 289063edf7..d9a5c0ee88 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -191,6 +191,7 @@ libc { pthread_mutex_consistent; pthread_mutexattr_getrobust; pthread_mutexattr_setrobust; + pthread_setname_np; } GLIBC_2.18 { pthread_getattr_default_np; @@ -330,6 +331,7 @@ libc { pthread_rwlockattr_setpshared; pthread_setattr_default_np; pthread_setconcurrency; + pthread_setname_np; pthread_setspecific; pthread_spin_destroy; pthread_spin_init; @@ -473,9 +475,12 @@ libpthread { }; GLIBC_2.12 { - pthread_setname_np; + __libpthread_version_placeholder; }; + GLIBC_2.13 { + } + GLIBC_2.18 { __libpthread_version_placeholder; } |