diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:51 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:51 +0200 |
commit | 9ce44f46754cc529d54418615862e7e27cc82f09 (patch) | |
tree | 47f6529fcc8f5d748ee347c96aeec7d345783e61 /nptl/pthreadP.h | |
parent | 64a8990bdcb7f7259eb8445e8a7846345869f669 (diff) | |
download | glibc-9ce44f46754cc529d54418615862e7e27cc82f09.tar.gz glibc-9ce44f46754cc529d54418615862e7e27cc82f09.tar.xz glibc-9ce44f46754cc529d54418615862e7e27cc82f09.zip |
nptl: Move pthread_key_delete into libc.
The symbol was moved using scripts/move-symbol-to-libc.py. tss_delete (still in libpthread) uses the __pthread_key_create alias, so that is now exported under GLIBC_PRIVATE.
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 2f3661cc4f..f09757bb26 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -523,6 +523,7 @@ extern int __pthread_condattr_destroy (pthread_condattr_t *attr); extern int __pthread_condattr_init (pthread_condattr_t *attr); extern int __pthread_key_create (pthread_key_t *key, void (*destr) (void *)); extern int __pthread_key_delete (pthread_key_t key); +libc_hidden_proto (__pthread_key_delete) extern void *__pthread_getspecific (pthread_key_t key); libc_hidden_proto (__pthread_getspecific) extern int __pthread_setspecific (pthread_key_t key, const void *value); |