1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/* Check that __pthread_destroy_specific works correctly if it has to skip
unused slots.
Copyright (C) 2000-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#define _GNU_SOURCE
#include <error.h>
#include <pthread.h>
#include <stdio.h>
#define N_k 42
static volatile int v;
static void
d (void *x)
{
int *i = (int *) x;
if (v != *i)
error (1, 0, "FAILED %d %d", v, *i);
v += 2;
printf ("%s %d\n", __FUNCTION__, *i);
fflush (stdout);
}
static void *
test (void *x)
{
pthread_key_t k[N_k];
static int k_v[N_k];
int err, i;
for (i = 0; i < N_k; i += 1)
{
err = pthread_key_create (&k[i], &d);
if (err != 0)
error (1, err, "pthread_key_create %d", i);
}
for (i = 0; i < N_k; i += 1)
{
k_v[i] = i;
err = pthread_setspecific (k[i], &k_v[i]);
if (err != 0)
error (1, err, "pthread_setspecific %d", i);
}
/* Delete every even key. */
for (i = 0; i < N_k; i += 2)
{
err = pthread_key_delete (k[i]);
if (err != 0)
error (1, err, "pthread_key_delete %d", i);
}
v = 1;
pthread_exit (NULL);
return NULL;
}
int
main (void)
{
pthread_t tid;
int err;
err = pthread_create (&tid, 0, test, NULL);
if (err != 0)
error (1, err, "pthread_create");
err = pthread_join (tid, NULL);
if (err)
error (1, err, "pthread_join");
if (v != N_k + 1)
error (1, 0, "FAILED END %d %d", v, N_k + 1);
return 0;
}
|