Update copyright notices with scripts/update-copyrights
[glibc.git] / nptl / tst-cancel11.c
blobceb39648000070932bc00d38f68282d173a91332
1 /* Copyright (C) 2003-2014 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, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <pthread.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
27 static pthread_barrier_t bar;
28 static int fd[2];
31 static void
32 cleanup (void *arg)
34 static int ncall;
36 if (++ncall != 1)
38 puts ("second call to cleanup");
39 exit (1);
42 printf ("cleanup call #%d\n", ncall);
46 static void *
47 tf (void *arg)
49 pthread_cleanup_push (cleanup, NULL);
51 int e = pthread_barrier_wait (&bar);
52 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
54 puts ("tf: 1st barrier_wait failed");
55 exit (1);
58 /* This call should block and be cancelable. */
59 char buf[20];
60 read (fd[0], buf, sizeof (buf));
62 pthread_cleanup_pop (0);
64 return NULL;
68 static int
69 do_test (void)
71 pthread_t th;
73 if (pthread_barrier_init (&bar, NULL, 2) != 0)
75 puts ("barrier_init failed");
76 exit (1);
79 if (pipe (fd) != 0)
81 puts ("pipe failed");
82 exit (1);
85 if (pthread_create (&th, NULL, tf, NULL) != 0)
87 puts ("create failed");
88 exit (1);
91 int e = pthread_barrier_wait (&bar);
92 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
94 puts ("1st barrier_wait failed");
95 exit (1);
98 if (pthread_cancel (th) != 0)
100 puts ("1st cancel failed");
101 exit (1);
104 void *r;
105 if (pthread_join (th, &r) != 0)
107 puts ("join failed");
108 exit (1);
111 if (r != PTHREAD_CANCELED)
113 puts ("thread not canceled");
114 exit (1);
117 return 0;
121 #define TEST_FUNCTION do_test ()
122 #include "../test-skeleton.c"