1 /* Copyright (C) 2002-2023 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/>. */
22 #include <sys/param.h>
38 if (pthread_getattr_np (pthread_self (), &attr
) != 0)
40 puts ("getattr_np failed");
46 if (pthread_attr_getstack (&attr
, &test_stack
, &test_size
) != 0)
48 puts ("attr_getstack failed");
52 if (test_size
!= size
)
54 printf ("child: reported size differs: is %zu, expected %zu\n",
59 if (test_stack
!= stack
)
61 printf ("child: reported stack address differs: is %p, expected %p\n",
68 return result
? (void *) 1l : NULL
;
77 size
= 4 * getpagesize ();
78 #ifdef PTHREAD_STACK_MIN
79 size
= MAX (size
, PTHREAD_STACK_MIN
);
81 if (posix_memalign (&stack
, getpagesize (), size
) != 0)
83 puts ("out of memory while allocating the stack memory");
88 if (pthread_attr_init (&attr
) != 0)
90 puts ("attr_init failed");
94 puts ("attr_setstack");
95 if (pthread_attr_setstack (&attr
, stack
, size
) != 0)
97 puts ("attr_setstack failed");
103 puts ("attr_getstack");
104 if (pthread_attr_getstack (&attr
, &test_stack
, &test_size
) != 0)
106 puts ("attr_getstack failed");
110 if (test_size
!= size
)
112 printf ("reported size differs: is %zu, expected %zu\n",
117 if (test_stack
!= stack
)
119 printf ("reported stack address differs: is %p, expected %p\n",
127 if (pthread_create (&th
, &attr
, tf
, NULL
) != 0)
129 puts ("failed to create thread");
134 if (pthread_join (th
, &status
) != 0)
136 puts ("join failed");
140 result
|= status
!= NULL
;
146 #define TEST_FUNCTION do_test ()
147 #include "../test-skeleton.c"