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:14 +0200 |
commit | ee092efed40d667b313f0d38c91941499a01bf06 (patch) | |
tree | 5571ecfe04ec5157da635316f4a2e598ddac0de0 /nptl/pthread_attr_getstacksize.c | |
parent | b5e75df2a5afef1a270a6dbc4a732e830ad212a4 (diff) | |
download | glibc-ee092efed40d667b313f0d38c91941499a01bf06.tar.gz glibc-ee092efed40d667b313f0d38c91941499a01bf06.tar.xz glibc-ee092efed40d667b313f0d38c91941499a01bf06.zip |
nptl: Move pthread_attr_getstacksize 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/pthread_attr_getstacksize.c')
-rw-r--r-- | nptl/pthread_attr_getstacksize.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/nptl/pthread_attr_getstacksize.c b/nptl/pthread_attr_getstacksize.c index 74404ce367..4b247cb31c 100644 --- a/nptl/pthread_attr_getstacksize.c +++ b/nptl/pthread_attr_getstacksize.c @@ -17,7 +17,7 @@ <https://www.gnu.org/licenses/>. */ #include "pthreadP.h" - +#include <shlib-compat.h> int __pthread_attr_getstacksize (const pthread_attr_t *attr, size_t *stacksize) @@ -40,4 +40,9 @@ __pthread_attr_getstacksize (const pthread_attr_t *attr, size_t *stacksize) return 0; } -strong_alias (__pthread_attr_getstacksize, pthread_attr_getstacksize) +versioned_symbol (libc, __pthread_attr_getstacksize, + pthread_attr_getstacksize, GLIBC_2_34); +#if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_1, GLIBC_2_34) +compat_symbol (libpthread, __pthread_attr_getstacksize, + pthread_attr_getstacksize, GLIBC_2_1); +#endif |