stdlib: Reinstate stable mergesort implementation on qsort
[glibc.git] / nptl / pthread_attr_setstacksize.c
blobc5aeba1f7a71e1bdcf396fd8c7baac84534ca81f
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/>. */
18 #include <errno.h>
19 #include <limits.h>
20 #include "pthreadP.h"
21 #include <shlib-compat.h>
23 #ifndef NEW_VERNUM
24 # define NEW_VERNUM GLIBC_2_3_3
25 #endif
28 int
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);
37 if (ret)
38 return ret;
40 iattr->stacksize = stacksize;
42 return 0;
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);
52 # endif
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);
57 # endif
59 # if OTHER_SHLIB_COMPAT(libpthread, GLIBC_2_1, NEW_VERNUM)
61 int
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)
70 return EINVAL;
72 # ifdef STACKSIZE_ADJUST
73 STACKSIZE_ADJUST;
74 # endif
76 iattr->stacksize = stacksize;
78 return 0;
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 */