1 /* Deallocation thread-specific data structures related to pthread_key_create.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
20 /* Deallocate POSIX thread-local-storage. */
22 __nptl_deallocate_tsd (void)
24 struct pthread
*self
= THREAD_SELF
;
26 /* Maybe no data was ever allocated. This happens often so we have
28 if (THREAD_GETMEM (self
, specific_used
))
38 /* So far no new nonzero data entry. */
39 THREAD_SETMEM (self
, specific_used
, false);
41 for (cnt
= idx
= 0; cnt
< PTHREAD_KEY_1STLEVEL_SIZE
; ++cnt
)
43 struct pthread_key_data
*level2
;
45 level2
= THREAD_GETMEM_NC (self
, specific
, cnt
);
51 for (inner
= 0; inner
< PTHREAD_KEY_2NDLEVEL_SIZE
;
54 void *data
= level2
[inner
].data
;
58 /* Always clear the data. */
59 level2
[inner
].data
= NULL
;
61 /* Make sure the data corresponds to a valid
62 key. This test fails if the key was
63 deallocated and also if it was
64 re-allocated. It is the user's
65 responsibility to free the memory in this
68 == __pthread_keys
[idx
].seq
69 /* It is not necessary to register a destructor
71 && __pthread_keys
[idx
].destr
!= NULL
)
72 /* Call the user-provided destructor. */
73 __pthread_keys
[idx
].destr (data
);
78 idx
+= PTHREAD_KEY_1STLEVEL_SIZE
;
81 if (THREAD_GETMEM (self
, specific_used
) == 0)
82 /* No data has been modified. */
85 /* We only repeat the process a fixed number of times. */
86 while (__builtin_expect (++round
< PTHREAD_DESTRUCTOR_ITERATIONS
, 0));
88 /* Just clear the memory of the first block for reuse. */
89 memset (&THREAD_SELF
->specific_1stblock
, '\0',
90 sizeof (self
->specific_1stblock
));
93 /* Free the memory for the other blocks. */
94 for (cnt
= 1; cnt
< PTHREAD_KEY_1STLEVEL_SIZE
; ++cnt
)
96 struct pthread_key_data
*level2
;
98 level2
= THREAD_GETMEM_NC (self
, specific
, cnt
);
101 /* The first block is allocated as part of the thread
104 THREAD_SETMEM_NC (self
, specific
, cnt
, NULL
);
108 THREAD_SETMEM (self
, specific_used
, false);
111 libc_hidden_def (__nptl_deallocate_tsd
)