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 | b9aec0dd9f270b09be6546443e8070de7e8b0d98 (patch) | |
tree | acd4f83813fae1be8cbc4fee1c9a6aa12dac7769 /nptl/Versions | |
parent | f1af331c4e87dee7d91e404b9f746c99ca3f2c71 (diff) | |
download | glibc-b9aec0dd9f270b09be6546443e8070de7e8b0d98.zip glibc-b9aec0dd9f270b09be6546443e8070de7e8b0d98.tar.gz glibc-b9aec0dd9f270b09be6546443e8070de7e8b0d98.tar.bz2 |
nptl: Move pthread_barrier_wait 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 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nptl/Versions b/nptl/Versions index 4716c3f..944c2e1 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -108,6 +108,7 @@ libc { __pthread_rwlock_wrlock; pthread_barrier_destroy; pthread_barrier_init; + pthread_barrier_wait; pthread_condattr_getpshared; pthread_condattr_setpshared; pthread_mutex_timedlock; @@ -222,6 +223,7 @@ libc { mtx_unlock; pthread_barrier_destroy; pthread_barrier_init; + pthread_barrier_wait; pthread_cond_clockwait; pthread_condattr_getclock; pthread_condattr_getpshared; @@ -312,6 +314,7 @@ libc { __pthread_attr_setaffinity_np; __pthread_attr_setsigmask_internal; __pthread_barrier_init; + __pthread_barrier_wait; __pthread_cleanup_pop; __pthread_cleanup_push; __pthread_cleanup_upto; @@ -372,7 +375,6 @@ libpthread { GLIBC_2.2 { pthread_attr_getstack; pthread_attr_setstack; - pthread_barrier_wait; pthread_barrierattr_destroy; pthread_barrierattr_init; pthread_barrierattr_setpshared; @@ -448,7 +450,6 @@ libpthread { GLIBC_PRIVATE { __libpthread_freeres; - __pthread_barrier_wait; __pthread_clock_gettime; __pthread_clock_settime; __pthread_get_minstack; |