diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/Versions | 3 | ||||
-rw-r--r-- | nptl/pthreadP.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/nptl/Versions b/nptl/Versions index 834fdbb..f267d4d 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -144,6 +144,7 @@ libc { thrd_exit; thrd_sleep; thrd_yield; + tss_create; } GLIBC_2.30 { pthread_cond_clockwait; @@ -212,6 +213,7 @@ libc { pthread_spin_trylock; pthread_spin_unlock; thrd_exit; + tss_create; } GLIBC_PRIVATE { __futex_abstimed_wait64; @@ -391,7 +393,6 @@ libpthread { thrd_create; thrd_detach; thrd_join; - tss_create; tss_delete; tss_get; tss_set; diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 3b070ee..d98bd11 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -547,6 +547,7 @@ libc_hidden_proto (__pthread_mutex_timedlock) 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 *)); +libc_hidden_proto (__pthread_key_create) extern int __pthread_key_delete (pthread_key_t key); libc_hidden_proto (__pthread_key_delete) extern void *__pthread_getspecific (pthread_key_t key); |