* Makerules (common-before-compile): New variable.
[glibc.git] / nptl / tst-cancel1.c
blob654c8a7a56e0c3d7d480f59d396c5cf87adaaacb
1 /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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 <pthread.h>
21 #include <signal.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
27 static pthread_mutex_t m1 = PTHREAD_MUTEX_INITIALIZER;
28 static pthread_mutex_t m2 = PTHREAD_MUTEX_INITIALIZER;
30 static int cntr;
33 static void
34 cleanup (void *arg)
36 if (arg != (void *) 42l)
37 cntr = 42;
38 else
39 cntr = 1;
43 static void *
44 tf (void *arg)
46 /* Ignore all signals. This must not have any effect on delivering
47 the cancellation signal. */
48 sigset_t ss;
50 sigfillset (&ss);
52 if (pthread_sigmask (SIG_BLOCK, &ss, NULL) != 0)
54 puts ("pthread_sigmask failed");
55 exit (1);
58 pthread_cleanup_push (cleanup, (void *) 42l);
60 int err = pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
61 if (err != 0)
63 printf ("setcanceltype failed: %s\n", strerror (err));
64 exit (1);
67 err = pthread_mutex_unlock (&m2);
68 if (err != 0)
70 printf ("child: mutex_unlock failed: %s\n", strerror (err));
71 exit (1);
74 err = pthread_mutex_lock (&m1);
75 if (err != 0)
77 printf ("child: 1st mutex_lock failed: %s\n", strerror (err));
78 exit (1);
81 /* We should never come here. */
83 pthread_cleanup_pop (0);
85 return NULL;
89 static int
90 do_test (void)
92 int err;
93 pthread_t th;
94 int result = 0;
95 void *retval;
97 /* Get the mutexes. */
98 err = pthread_mutex_lock (&m1);
99 if (err != 0)
101 printf ("parent: 1st mutex_lock failed: %s\n", strerror (err));
102 return 1;
104 err = pthread_mutex_lock (&m2);
105 if (err != 0)
107 printf ("parent: 2nd mutex_lock failed: %s\n", strerror (err));
108 return 1;
111 err = pthread_create (&th, NULL, tf, NULL);
112 if (err != 0)
114 printf ("create failed: %s\n", strerror (err));
115 return 1;
118 err = pthread_mutex_lock (&m2);
119 if (err != 0)
121 printf ("parent: 3rd mutex_lock failed: %s\n", strerror (err));
122 return 1;
125 err = pthread_cancel (th);
126 if (err != 0)
128 printf ("cancel failed: %s\n", strerror (err));
129 return 1;
132 err = pthread_join (th, &retval);
133 if (err != 0)
135 printf ("join failed: %s\n", strerror (err));
136 return 1;
139 if (retval != PTHREAD_CANCELED)
141 printf ("wrong return value: %p\n", retval);
142 result = 1;
145 if (cntr == 42)
147 puts ("cleanup handler called with wrong argument");
148 result = 1;
150 else if (cntr != 1)
152 puts ("cleanup handling not called");
153 result = 1;
156 return result;
160 #define TEST_FUNCTION do_test ()
161 #include "../test-skeleton.c"