Update copyright dates with scripts/update-copyrights.
[glibc.git] / nptl / tst-cleanup4.c
blobea587584fd7b529fe6475a4df16d9f657b11e505
1 /* Copyright (C) 2003-2015 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 <http://www.gnu.org/licenses/>. */
19 #include <pthread.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <unistd.h>
24 /* LinuxThreads pthread_cleanup_{push,pop} helpers. */
25 extern void _pthread_cleanup_push (struct _pthread_cleanup_buffer *__buffer,
26 void (*__routine) (void *),
27 void *__arg);
28 extern void _pthread_cleanup_pop (struct _pthread_cleanup_buffer *__buffer,
29 int __execute);
31 static int fds[2];
32 static pthread_barrier_t b2;
33 static int global;
35 /* Defined in tst-cleanup4aux.c, never compiled with -fexceptions. */
36 extern void fn5 (void);
37 extern void fn7 (void);
38 extern void fn9 (void);
40 void
41 clh (void *arg)
43 int val = (long int) arg;
45 printf ("clh (%d)\n", val);
47 global *= val;
48 global += val;
52 static __attribute__((noinline)) void
53 fn_read (void)
55 int r = pthread_barrier_wait (&b2);
56 if (r != 0 && r != PTHREAD_BARRIER_SERIAL_THREAD)
58 printf ("%s: barrier_wait failed\n", __FUNCTION__);
59 exit (1);
62 char c;
63 read (fds[0], &c, 1);
67 __attribute__((noinline)) void
68 fn0 (void)
70 pthread_cleanup_push (clh, (void *) 1l);
72 fn_read ();
74 pthread_cleanup_pop (1);
78 __attribute__((noinline)) void
79 fn1 (void)
81 /* This is the old LinuxThreads pthread_cleanup_{push,pop}. */
82 struct _pthread_cleanup_buffer b;
83 _pthread_cleanup_push (&b, clh, (void *) 2l);
85 fn0 ();
87 _pthread_cleanup_pop (&b, 1);
91 static __attribute__((noinline)) void
92 fn2 (void)
94 pthread_cleanup_push (clh, (void *) 3l);
96 fn1 ();
98 pthread_cleanup_pop (1);
102 static void *
103 tf (void *a)
105 switch ((long) a)
107 case 0:
108 fn2 ();
109 break;
110 case 1:
111 fn5 ();
112 break;
113 case 2:
114 fn7 ();
115 break;
116 case 3:
117 fn9 ();
118 break;
121 return NULL;
126 do_test (void)
128 int result = 0;
130 if (pipe (fds) != 0)
132 puts ("pipe failed");
133 exit (1);
136 if (pthread_barrier_init (&b2, NULL, 2) != 0)
138 puts ("b2 init failed");
139 exit (1);
142 const int expect[] =
144 15, /* 1 2 3 */
145 276, /* 1 4 5 6 */
146 120, /* 1 7 8 */
147 460 /* 1 2 9 10 */
150 long i;
151 for (i = 0; i < 4; ++i)
153 global = 0;
155 printf ("test %ld\n", i);
157 pthread_t th;
158 if (pthread_create (&th, NULL, tf, (void *) i) != 0)
160 puts ("create failed");
161 exit (1);
164 int e = pthread_barrier_wait (&b2);
165 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD)
167 printf ("%s: barrier_wait failed\n", __FUNCTION__);
168 exit (1);
171 pthread_cancel (th);
173 void *r;
174 if ((e = pthread_join (th, &r)) != 0)
176 printf ("join failed: %d\n", e);
177 _exit (1);
180 if (r != PTHREAD_CANCELED)
182 puts ("thread not canceled");
183 exit (1);
186 if (global != expect[i])
188 printf ("global = %d, expected %d\n", global, expect[i]);
189 result = 1;
193 return result;
196 #define TEST_FUNCTION do_test ()
197 #include "../test-skeleton.c"