Add hidden_def.
[glibc.git] / nptl / tst-kill6.c
blob9956dcb9b8167643d00054071467a2e00730e21b
1 /* Copyright (C) 2003 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_t th[N];
92 int i;
93 for (i = 0; i < N; ++i)
94 if (pthread_create (&th[i], NULL, tf, NULL) != 0)
96 puts ("create failed");
97 exit (1);
100 if (sem_init (&sem, 0, 0) != 0)
102 puts ("sem_init failed");
103 exit (1);
106 for (i = 0; i < N * 10; ++i)
108 receiver = th[i % N];
110 if (pthread_kill (receiver, SIGUSR1) != 0)
112 puts ("kill failed");
113 exit (1);
116 if (TEMP_FAILURE_RETRY (sem_wait (&sem)) != 0)
118 puts ("sem_wait failed");
119 exit (1);
123 int e = pthread_barrier_wait (&b);
124 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
126 puts ("barrier_wait failed");
127 exit (1);
130 for (i = 0; i < N; ++i)
131 if (pthread_join (th[i], NULL) != 0)
133 puts ("join failed");
134 exit (1);
137 return 0;
141 #define TEST_FUNCTION do_test ()
142 #include "../test-skeleton.c"