1 /* __pthread_destory_specific. Hurd version.
2 Copyright (C) 2002-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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 <https://www.gnu.org/licenses/>. */
22 #include <pt-internal.h>
25 __pthread_destroy_specific (struct __pthread
*thread
)
30 /* Check if there is any thread specific data. */
31 if (thread
->thread_specifics
== NULL
)
34 __pthread_key_lock_ready ();
36 /* Iterate and call the destructors on any thread specific data. */
41 __pthread_mutex_lock (&__pthread_key_lock
);
43 for (i
= 0; i
< __pthread_key_count
&& i
< thread
->thread_specifics_size
;
48 if (__pthread_key_destructors
[i
] == PTHREAD_KEY_INVALID
)
51 value
= thread
->thread_specifics
[i
];
54 thread
->thread_specifics
[i
] = 0;
56 if (__pthread_key_destructors
[i
])
59 __pthread_key_destructors
[i
] (value
);
64 __pthread_mutex_unlock (&__pthread_key_lock
);
69 /* This may take a very long time. Let those blocking on
70 pthread_key_create or pthread_key_delete make progress. */
74 free (thread
->thread_specifics
);
75 thread
->thread_specifics
= 0;
76 thread
->thread_specifics_size
= 0;