about summary refs log tree commit diff
path: root/nptl/Versions
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-05-03 08:12:11 +0200
committerFlorian Weimer <fweimer@redhat.com>2021-05-03 08:14:28 +0200
commitf11c293a4c3c637c3eecae00b341c578f52bdc46 (patch)
treef3b69e08b80b1fc98ace16d01563086f04cb9e99 /nptl/Versions
parent0431f171daefc436b8d185d852e45800745d7496 (diff)
downloadglibc-f11c293a4c3c637c3eecae00b341c578f52bdc46.tar.gz
glibc-f11c293a4c3c637c3eecae00b341c578f52bdc46.tar.xz
glibc-f11c293a4c3c637c3eecae00b341c578f52bdc46.zip
nptl: Move cnd_destroy into libc
The symbol was moved using scripts/move-symbol-to-libc.py.

The __pthread_cond_destroy@@GLIBC_PRIVATE symbol is no longer
neded, so remove that as well.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'nptl/Versions')
-rw-r--r--nptl/Versions4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/Versions b/nptl/Versions
index fc34e59b70..08fcebacb7 100644
--- a/nptl/Versions
+++ b/nptl/Versions
@@ -128,6 +128,7 @@ libc {
   GLIBC_2.28 {
     call_once;
     cnd_broadcast;
+    cnd_destroy;
     thrd_current;
     thrd_equal;
     thrd_sleep;
@@ -158,6 +159,7 @@ libc {
     __pthread_setspecific;
     call_once;
     cnd_broadcast;
+    cnd_destroy;
     pthread_cond_clockwait;
     pthread_condattr_getclock;
     pthread_condattr_getpshared;
@@ -220,7 +222,6 @@ libc {
     __pthread_cleanup_pop;
     __pthread_cleanup_push;
     __pthread_cleanup_upto;
-    __pthread_cond_destroy; # Used by the C11 threads.
     __pthread_cond_init; # Used by the C11 threads.
     __pthread_cond_signal; # Used by the C11 threads.
     __pthread_cond_timedwait; # Used by the C11 threads.
@@ -375,7 +376,6 @@ libpthread {
 
   # C11 thread symbols.
   GLIBC_2.28 {
-    cnd_destroy;
     cnd_init;
     cnd_signal;
     cnd_timedwait;