diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
commit | f03b78fae46905a5676c7b7f360cadba2f290708 (patch) | |
tree | 322292da3aeeb1b8e5504afaf089d8a486228303 /nptl/Versions | |
parent | 2208066603a136f95cfb815ca9281262e6465784 (diff) | |
download | glibc-f03b78fae46905a5676c7b7f360cadba2f290708.tar.gz glibc-f03b78fae46905a5676c7b7f360cadba2f290708.tar.xz glibc-f03b78fae46905a5676c7b7f360cadba2f290708.zip |
nptl: Move pthread_mutex_consistent into libc
And deprecated pthread_mutex_consistent_np, its old name. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/Versions')
-rw-r--r-- | nptl/Versions | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/nptl/Versions b/nptl/Versions index 494fb3efd9..ce9b0e6232 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -56,6 +56,12 @@ libc { GLIBC_2.3.4 { pthread_attr_setaffinity_np; } + GLIBC_2.4 { + pthread_mutex_consistent_np; + } + GLIBC_2.12 { + pthread_mutex_consistent; + } # C11 thread symbols. GLIBC_2.28 { thrd_current; @@ -73,6 +79,7 @@ libc { } GLIBC_2.34 { pthread_kill; + pthread_mutex_consistent; } GLIBC_PRIVATE { __futex_abstimed_wait64; @@ -283,7 +290,6 @@ libpthread { } GLIBC_2.4 { - pthread_mutex_consistent_np; pthread_mutex_getprioceiling; pthread_mutex_setprioceiling; pthread_mutexattr_getprioceiling; @@ -300,7 +306,6 @@ libpthread { GLIBC_2.12 { pthread_getname_np; - pthread_mutex_consistent; pthread_mutexattr_getrobust; pthread_mutexattr_setrobust; pthread_setname_np; |