1 /* Copyright (C) 2003-2019 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
29 static pthread_barrier_t b
;
30 volatile int in_sh_body
;
31 unsigned long cleanups
;
36 cleanups
= (cleanups
<< 4) | (long) arg
;
40 static void __attribute__((noinline
))
45 pthread_cleanup_push (cl
, (void *) 1L);
48 if (read (fd
[2], &c
, 1) == 1)
50 puts ("read succeeded");
54 pthread_cleanup_pop (0);
61 pthread_cleanup_push (cl
, (void *) 2L);
65 pthread_cleanup_pop (0);
69 static void __attribute__((noinline
))
74 pthread_cleanup_push (cl
, (void *) 3L);
76 int r
= pthread_barrier_wait (&b
);
77 if (r
!= 0 && r
!= PTHREAD_BARRIER_SERIAL_THREAD
)
79 puts ("child thread: barrier_wait failed");
83 if (read (fd
[0], &c
, 1) == 1)
85 puts ("read succeeded");
91 pthread_cleanup_pop (0);
98 pthread_t th
= (pthread_t
) arg
;
100 int r
= pthread_barrier_wait (&b
);
101 if (r
!= 0 && r
!= PTHREAD_BARRIER_SERIAL_THREAD
)
103 puts ("parent thread: barrier_wait failed");
109 r
= pthread_kill (th
, SIGHUP
);
113 printf ("pthread_kill failed %m\n");
117 while (in_sh_body
== 0)
120 if (pthread_cancel (th
) != 0)
122 puts ("cancel failed");
127 if (pthread_join (th
, &ret
) != 0)
129 puts ("join failed");
133 if (ret
!= PTHREAD_CANCELED
)
135 puts ("result is wrong");
139 if (cleanups
!= 0x1234L
)
141 printf ("called cleanups %lx\n", cleanups
);
145 if (pthread_barrier_destroy (&b
))
147 puts ("barrier destroy failed");
151 /* The pipe closing must be issued after the cancellation handling to avoid
152 a race condition where the cancellation runs after both pipe ends are
153 closed. In this case the read syscall returns EOF and the cancellation
173 printf ("fork failed: %m\n");
180 if (waitpid (pid
, &status
, 0) < 0)
182 printf ("waitpid failed %m\n");
186 return !WIFEXITED (status
) || WEXITSTATUS (status
);
189 if (pthread_barrier_init (&b
, NULL
, 2) != 0)
191 puts ("barrier_init failed");
196 if (pipe (fd
) != 0 || pipe (fd
+ 2) != 0)
198 puts ("pipe failed");
203 if (pthread_create (&th
, NULL
, tf
, (void *) pthread_self ()) != 0)
205 puts ("create failed");
209 pthread_cleanup_push (cl
, (void *) 4L);
211 pthread_cleanup_pop (0);
220 ss
.ss_sp
= malloc (2 * SIGSTKSZ
);
221 if (ss
.ss_sp
== NULL
)
223 puts ("failed to allocate alternate stack");
227 ss
.ss_size
= 2 * SIGSTKSZ
;
228 if (sigaltstack (&ss
, NULL
) < 0)
230 printf ("sigaltstack failed %m\n");
236 sigemptyset (&sa
.sa_mask
);
239 if (sigaction (SIGHUP
, &sa
, NULL
) != 0)
241 puts ("sigaction failed");
245 puts ("sa_flags = 0 test");
250 sigemptyset (&sa
.sa_mask
);
251 sa
.sa_flags
= SA_ONSTACK
;
253 if (sigaction (SIGHUP
, &sa
, NULL
) != 0)
255 puts ("sigaction failed");
259 puts ("sa_flags = SA_ONSTACK test");
264 sa
.sa_sigaction
= (void (*)(int, siginfo_t
*, void *)) sh
;
265 sigemptyset (&sa
.sa_mask
);
266 sa
.sa_flags
= SA_SIGINFO
;
268 if (sigaction (SIGHUP
, &sa
, NULL
) != 0)
270 puts ("sigaction failed");
274 puts ("sa_flags = SA_SIGINFO test");
278 sa
.sa_sigaction
= (void (*)(int, siginfo_t
*, void *)) sh
;
279 sigemptyset (&sa
.sa_mask
);
280 sa
.sa_flags
= SA_SIGINFO
| SA_ONSTACK
;
282 if (sigaction (SIGHUP
, &sa
, NULL
) != 0)
284 puts ("sigaction failed");
288 puts ("sa_flags = SA_SIGINFO|SA_ONSTACK test");
297 #define TEST_FUNCTION do_test ()
298 #include "../test-skeleton.c"