aboutsummaryrefslogtreecommitdiff
path: root/nptl
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:38 +0200
commit3eab466e566c5c28cbec55b092fe21e134baac22 (patch)
tree0ac64e4963ae00618a3b492df547c2d85a78ac13 /nptl
parentf11c293a4c3c637c3eecae00b341c578f52bdc46 (diff)
downloadglibc-3eab466e566c5c28cbec55b092fe21e134baac22.tar
glibc-3eab466e566c5c28cbec55b092fe21e134baac22.tar.gz
glibc-3eab466e566c5c28cbec55b092fe21e134baac22.tar.bz2
glibc-3eab466e566c5c28cbec55b092fe21e134baac22.zip
nptl: Move cnd_init into libc
The symbol was moved using scripts/move-symbol-to-libc.py. The __pthread_cond_init@@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')
-rw-r--r--nptl/Versions4
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/Versions b/nptl/Versions
index 08fcebacb7..3b11cc1797 100644
--- a/nptl/Versions
+++ b/nptl/Versions
@@ -129,6 +129,7 @@ libc {
call_once;
cnd_broadcast;
cnd_destroy;
+ cnd_init;
thrd_current;
thrd_equal;
thrd_sleep;
@@ -160,6 +161,7 @@ libc {
call_once;
cnd_broadcast;
cnd_destroy;
+ cnd_init;
pthread_cond_clockwait;
pthread_condattr_getclock;
pthread_condattr_getpshared;
@@ -222,7 +224,6 @@ libc {
__pthread_cleanup_pop;
__pthread_cleanup_push;
__pthread_cleanup_upto;
- __pthread_cond_init; # Used by the C11 threads.
__pthread_cond_signal; # Used by the C11 threads.
__pthread_cond_timedwait; # Used by the C11 threads.
__pthread_cond_wait; # Used by the C11 threads.
@@ -376,7 +377,6 @@ libpthread {
# C11 thread symbols.
GLIBC_2.28 {
- cnd_init;
cnd_signal;
cnd_timedwait;
cnd_wait;