Fix parameter name.
[glibc.git] / nptl / tst-eintr1.c
blob72e4397b4e2732ac1c0ce3db4c70882496247f0f
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 <signal.h>
23 #include <stdio.h>
24 #include <stdlib.h>
26 #include "eintr.c"
29 static void *
30 tf2 (void *arg)
32 return arg;
36 static void *
37 tf1 (void *arg)
39 while (1)
41 pthread_t th;
43 int e = pthread_create (&th, NULL, tf2, NULL);
44 if (e != 0)
46 if (e == EINTR)
48 puts ("pthread_create returned EINTR");
49 exit (1);
52 puts ("pthread_create failed");
53 exit (1);
56 e = pthread_join (th, NULL);
57 if (e != 0)
59 if (e == EINTR)
61 puts ("pthread_join returned EINTR");
62 exit (1);
65 puts ("join failed");
66 exit (1);
72 static int
73 do_test (void)
75 setup_eintr (SIGUSR1);
77 int i;
78 for (i = 0; i < 10; ++i)
80 pthread_t th;
81 if (pthread_create (&th, NULL, tf1, NULL) != 0)
83 puts ("pthread_create failed");
84 exit (1);
88 (void) tf1 (NULL);
89 /* NOTREACHED */
91 return 0;
94 #define EXPECTED_SIGNAL SIGALRM
95 #define TIMEOUT 3
96 #define TEST_FUNCTION do_test ()
97 #include "../test-skeleton.c"