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
|
#include <assert.h>
#include <pthread.h>
#include <errno.h>
#include <limits.h>
_Atomic int dtors_entered = 0;
pthread_key_t key3;
static void dtor1(void *arg) {
(void)arg;
dtors_entered++;
// Set the key during destruction to trigger dtor2 (as it only runs if
// the key value is non-NULL).
assert(!pthread_setspecific(key3, &key3));
assert(pthread_getspecific(key3) == &key3);
}
static void dtor2(void *arg) {
(void)arg;
dtors_entered++;
}
static void *worker1(void *arg) {
(void)arg;
pthread_key_t key1, key2;
assert(!pthread_key_create(&key1, NULL));
assert(!pthread_key_create(&key2, dtor1));
assert(!pthread_key_create(&key3, dtor2));
assert(!pthread_setspecific(key1, &key1));
assert(pthread_getspecific(key1) == &key1);
assert(!pthread_setspecific(key2, &key2));
assert(pthread_getspecific(key2) == &key2);
pthread_exit(0);
return NULL;
}
static void dtor3(void *arg) {
(void)arg;
// Make sure that we can create and destroy keys inside the dtor.
pthread_key_t dtorKey;
assert(!pthread_key_create(&dtorKey, NULL));
assert(!pthread_setspecific(dtorKey, &dtorKey));
assert(pthread_getspecific(dtorKey) == &dtorKey);
assert(!pthread_key_delete(dtorKey));
}
static void *worker2(void *arg) {
(void)arg;
pthread_key_t key;
assert(!pthread_key_create(&key, dtor3));
assert(!pthread_setspecific(key, &key));
assert(pthread_getspecific(key) == &key);
pthread_exit(0);
return NULL;
}
int main() {
// NOTE that the EINVAL return from pthread_setspecific is mlibc-specific,
// POSIX specifies that accessing an invalid key is undefined behavior.
assert(pthread_getspecific(PTHREAD_KEYS_MAX) == NULL);
assert(pthread_setspecific(PTHREAD_KEYS_MAX, NULL) == EINVAL);
pthread_key_t key;
assert(!pthread_key_create(&key, NULL));
assert(!pthread_setspecific(key, &key));
assert(pthread_getspecific(key) == &key);
assert(!pthread_key_delete(key));
pthread_t thread;
assert(!pthread_create(&thread, NULL, &worker1, NULL));
assert(!pthread_join(thread, NULL));
assert(pthread_getspecific(key) == NULL);
assert(!pthread_setspecific(key, &key));
assert(pthread_getspecific(key) == &key);
assert(dtors_entered == 2);
assert(!pthread_create(&thread, NULL, &worker2, NULL));
assert(!pthread_join(thread, NULL));
return 0;
}
|