1 /* Copyright (C) 2002-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
21 #include <shlib-compat.h>
24 # define NEW_VERNUM GLIBC_2_3_3
29 __pthread_attr_setstacksize (pthread_attr_t
*attr
, size_t stacksize
)
31 struct pthread_attr
*iattr
;
33 iattr
= (struct pthread_attr
*) attr
;
35 /* Catch invalid sizes. */
36 int ret
= check_stacksize_attr (stacksize
);
40 iattr
->stacksize
= stacksize
;
44 versioned_symbol (libc
, __pthread_attr_setstacksize
,
45 pthread_attr_setstacksize
, GLIBC_2_34
);
48 #if PTHREAD_STACK_MIN == 16384
49 # if OTHER_SHLIB_COMPAT (libpthread, GLIBC_2_1, GLIBC_2_34)
50 compat_symbol (libpthread
, __pthread_attr_setstacksize
,
51 pthread_attr_setstacksize
, GLIBC_2_1
);
53 #else /* PTHREAD_STACK_MIN != 16384 */
54 # if OTHER_SHLIB_COMPAT (libpthread, NEW_VERNUM, GLIBC_2_34)
55 compat_symbol (libpthread
, __pthread_attr_setstacksize
,
56 pthread_attr_setstacksize
, NEW_VERNUM
);
59 # if OTHER_SHLIB_COMPAT(libpthread, GLIBC_2_1, NEW_VERNUM)
62 __old_pthread_attr_setstacksize (pthread_attr_t
*attr
, size_t stacksize
)
64 struct pthread_attr
*iattr
;
66 iattr
= (struct pthread_attr
*) attr
;
68 /* Catch invalid sizes. */
69 if (stacksize
< 16384)
72 # ifdef STACKSIZE_ADJUST
76 iattr
->stacksize
= stacksize
;
81 compat_symbol (libpthread
, __old_pthread_attr_setstacksize
,
82 pthread_attr_setstacksize
, GLIBC_2_1
);
83 # endif /* OTHER_SHLIB_COMPAT */
84 #endif /* PTHREAD_STACK_MIN != 16384 */