Update copyright notices with scripts/update-copyrights
[glibc.git] / nptl / tst-tsd3.c
blob36f7b57a634284fd31f17a0ff49efe39b8bf717a
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 <limits.h>
20 #include <pthread.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <unistd.h>
26 static pthread_key_t key1;
27 static pthread_key_t key2;
30 static int left;
33 static void
34 destr1 (void *arg)
36 if (--left > 0)
38 puts ("set key2");
40 if (pthread_setspecific (key2, (void *) 1l) != 0)
42 puts ("destr1: setspecific failed");
43 exit (1);
49 static void
50 destr2 (void *arg)
52 if (--left > 0)
54 puts ("set key1");
56 if (pthread_setspecific (key1, (void *) 1l) != 0)
58 puts ("destr2: setspecific failed");
59 exit (1);
65 static void *
66 tf (void *arg)
68 /* Let the destructors work. */
69 left = 7;
71 if (pthread_setspecific (key1, (void *) 1l) != 0
72 || pthread_setspecific (key2, (void *) 1l) != 0)
74 puts ("tf: setspecific failed");
75 exit (1);
78 return NULL;
82 static int
83 do_test (void)
85 /* Allocate two keys, both with destructors. */
86 if (pthread_key_create (&key1, destr1) != 0
87 || pthread_key_create (&key2, destr2) != 0)
89 puts ("key_create failed");
90 return 1;
93 pthread_t th;
94 if (pthread_create (&th, NULL, tf, NULL) != 0)
96 puts ("create failed");
97 return 1;
100 if (pthread_join (th, NULL) != 0)
102 puts ("join failed");
103 return 1;
106 if (left != 0)
108 printf ("left == %d\n", left);
109 return 1;
112 if (pthread_getspecific (key1) != NULL)
114 puts ("key1 data != NULL");
115 return 1;
117 if (pthread_getspecific (key2) != NULL)
119 puts ("key2 data != NULL");
120 return 1;
123 return 0;
127 #define TEST_FUNCTION do_test ()
128 #include "../test-skeleton.c"