Mark __libc_resp with attribute_tls_model_ie for consistency with __resp
[glibc/nacl-glibc.git] / nptl / tst-kill6.c
blob26e82d98f033975220f7ca98633dc672c1667e80
1 /* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <pthread.h>
22 #include <semaphore.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
29 static pthread_t receiver;
30 static sem_t sem;
31 static pthread_barrier_t b;
33 static void
34 handler (int sig)
36 if (sig != SIGUSR1)
38 write (STDOUT_FILENO, "wrong signal\n", 13);
39 _exit (1);
42 if (pthread_self () != receiver)
44 write (STDOUT_FILENO, "not the intended receiver\n", 26);
45 _exit (1);
48 if (sem_post (&sem) != 0)
50 write (STDOUT_FILENO, "sem_post failed\n", 16);
51 _exit (1);
56 static void *
57 tf (void *a)
59 int e = pthread_barrier_wait (&b);
60 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
62 puts ("child: barrier_wait failed");
63 exit (1);
66 return NULL;
70 int
71 do_test (void)
73 struct sigaction sa;
74 sigemptyset (&sa.sa_mask);
75 sa.sa_flags = 0;
76 sa.sa_handler = handler;
77 if (sigaction (SIGUSR1, &sa, NULL) != 0)
79 puts ("sigaction failed");
80 exit (1);
83 #define N 20
85 if (pthread_barrier_init (&b, NULL, N + 1) != 0)
87 puts ("barrier_init failed");
88 exit (1);
91 pthread_attr_t a;
93 if (pthread_attr_init (&a) != 0)
95 puts ("attr_init failed");
96 exit (1);
99 if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
101 puts ("attr_setstacksize failed");
102 return 1;
105 pthread_t th[N];
106 int i;
107 for (i = 0; i < N; ++i)
108 if (pthread_create (&th[i], &a, tf, NULL) != 0)
110 puts ("create failed");
111 exit (1);
114 if (pthread_attr_destroy (&a) != 0)
116 puts ("attr_destroy failed");
117 exit (1);
120 if (sem_init (&sem, 0, 0) != 0)
122 puts ("sem_init failed");
123 exit (1);
126 for (i = 0; i < N * 10; ++i)
128 receiver = th[i % N];
130 if (pthread_kill (receiver, SIGUSR1) != 0)
132 puts ("kill failed");
133 exit (1);
136 if (TEMP_FAILURE_RETRY (sem_wait (&sem)) != 0)
138 puts ("sem_wait failed");
139 exit (1);
143 int e = pthread_barrier_wait (&b);
144 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
146 puts ("barrier_wait failed");
147 exit (1);
150 for (i = 0; i < N; ++i)
151 if (pthread_join (th[i], NULL) != 0)
153 puts ("join failed");
154 exit (1);
157 return 0;
161 #define TEST_FUNCTION do_test ()
162 #include "../test-skeleton.c"