1 /* Copyright (C) 2003-2022 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 <semaphore.h>
27 #include <pthreaddef.h>
29 #define THE_SIG SIGUSR1
31 /* The stack size can be overriden. With a sufficiently large stack
32 size, thread stacks for terminated threads are freed, but this does
33 not happen with the default size of 1 MiB. */
34 enum { default_stack_size_in_mb
= 1 };
35 static long stack_size_in_mb
;
38 static pthread_t th
[N
];
41 static int do_test (void);
43 #define TEST_FUNCTION do_test ()
44 #include "../test-skeleton.c"
50 if (th[n] != pthread_self ()) \
52 write_message ("wrong callback\n"); \
66 static void (*cbs
[]) (void) =
68 cb0
, cb1
, cb2
, cb3
, cb4
, cb5
, cb6
, cb7
, cb8
, cb9
77 #define TOTAL_SIGS 1000
84 if (stack_size_in_mb
== 0)
85 stack_size_in_mb
= default_stack_size_in_mb
;
87 if ((uintptr_t) pthread_self () & (TCB_ALIGNMENT
- 1))
89 puts ("initial thread's struct pthread not aligned enough");
93 if (pthread_barrier_init (&b
, NULL
, N
+ 1) != 0)
95 puts ("barrier_init failed");
99 if (sem_init (&s
, 0, 0) != 0)
101 puts ("sem_init failed");
105 void *h
= dlopen ("tst-tls3mod.so", RTLD_LAZY
);
108 puts ("dlopen failed");
112 void *(*tf
) (void *) = dlsym (h
, "tf");
115 puts ("dlsym for tf failed");
120 sa
.sa_handler
= dlsym (h
, "handler");
121 if (sa
.sa_handler
== NULL
)
123 puts ("dlsym for handler failed");
126 sigemptyset (&sa
.sa_mask
);
128 if (sigaction (THE_SIG
, &sa
, NULL
) != 0)
130 puts ("sigaction failed");
136 if (pthread_attr_init (&a
) != 0)
138 puts ("attr_init failed");
142 if (pthread_attr_setstacksize (&a
, stack_size_in_mb
* 1024 * 1024) != 0)
144 puts ("attr_setstacksize failed");
149 for (r
= 0; r
< 10; ++r
)
152 for (i
= 0; i
< N
; ++i
)
153 if (pthread_create (&th
[i
], &a
, tf
, cbs
[i
]) != 0)
155 puts ("pthread_create failed");
161 pthread_barrier_wait (&b
);
165 sigaddset (&ss
, THE_SIG
);
166 if (pthread_sigmask (SIG_BLOCK
, &ss
, NULL
) != 0)
168 puts ("pthread_sigmask failed");
172 /* Start sending signals. */
173 for (i
= 0; i
< TOTAL_SIGS
; ++i
)
175 if (kill (getpid (), THE_SIG
) != 0)
177 puts ("kill failed");
181 if (TEMP_FAILURE_RETRY (sem_wait (&s
)) != 0)
183 puts ("sem_wait failed");
190 pthread_barrier_wait (&b
);
192 if (pthread_sigmask (SIG_UNBLOCK
, &ss
, NULL
) != 0)
194 puts ("pthread_sigmask failed");
198 for (i
= 0; i
< N
; ++i
)
199 if (pthread_join (th
[i
], NULL
) != 0)
201 puts ("join failed");
206 if (pthread_attr_destroy (&a
) != 0)
208 puts ("attr_destroy failed");