diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-06 15:56:37 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-06 15:56:37 +0200 |
commit | 43b3746aff2f20c5865f559a76896fc6b131c09c (patch) | |
tree | 603b6fa77c5245efc10c5093fe10de0a67ef02d6 /nptl/Versions | |
parent | 5633541d3b9a78fc5283af3a2f3e824126ef785a (diff) | |
download | glibc-43b3746aff2f20c5865f559a76896fc6b131c09c.tar glibc-43b3746aff2f20c5865f559a76896fc6b131c09c.tar.gz glibc-43b3746aff2f20c5865f559a76896fc6b131c09c.tar.bz2 glibc-43b3746aff2f20c5865f559a76896fc6b131c09c.zip |
nptl: Move pthread_barrier_destroy 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/Versions')
-rw-r--r-- | nptl/Versions | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/Versions b/nptl/Versions index b243e380e3..b7a08a56a7 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -106,6 +106,7 @@ libc { __pthread_rwlock_trywrlock; __pthread_rwlock_unlock; __pthread_rwlock_wrlock; + pthread_barrier_destroy; pthread_condattr_getpshared; pthread_condattr_setpshared; pthread_mutex_timedlock; @@ -218,6 +219,7 @@ libc { mtx_timedlock; mtx_trylock; mtx_unlock; + pthread_barrier_destroy; pthread_cond_clockwait; pthread_condattr_getclock; pthread_condattr_getpshared; @@ -367,7 +369,6 @@ libpthread { GLIBC_2.2 { pthread_attr_getstack; pthread_attr_setstack; - pthread_barrier_destroy; pthread_barrier_init; pthread_barrier_wait; pthread_barrierattr_destroy; |