diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-11 19:32:43 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-11 19:33:20 +0200 |
commit | 870218fb30a83c071b53b036d1eb33df7e30397e (patch) | |
tree | 41fd5c55d08374dd044b248a8b394fb7a5d97369 /nptl/Versions | |
parent | 736c57c96cd1fd79905cf0f224ca6e3864eb71b4 (diff) | |
download | glibc-870218fb30a83c071b53b036d1eb33df7e30397e.zip glibc-870218fb30a83c071b53b036d1eb33df7e30397e.tar.gz glibc-870218fb30a83c071b53b036d1eb33df7e30397e.tar.bz2 |
nptl: Move pthread_attr_setstacksize into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
It is necessary to arrange for a
__libpthread_version_placeholder@GLIBC_2.6 on some of the powerpc
targets.
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 edf4da4..0045780 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -78,6 +78,7 @@ libc { pthread_attr_init; pthread_attr_setguardsize; pthread_attr_setstackaddr; + pthread_attr_setstacksize; pthread_mutexattr_gettype; pthread_mutexattr_settype; pthread_rwlock_destroy; @@ -254,6 +255,7 @@ libc { pthread_attr_setguardsize; pthread_attr_setstack; pthread_attr_setstackaddr; + pthread_attr_setstacksize; pthread_barrier_destroy; pthread_barrier_init; pthread_barrier_wait; @@ -402,7 +404,6 @@ libpthread { } GLIBC_2.1 { - pthread_attr_setstacksize; pthread_create; pthread_getconcurrency; pthread_setconcurrency; |