Home
last modified time | relevance | path

Searched refs:__pthread_keys (Results 1 – 7 of 7) sorted by relevance

/nptl/
A Dpthread_keys.c22 struct pthread_key_struct __pthread_keys[PTHREAD_KEYS_MAX]; variable
23 libc_hidden_data_def (__pthread_keys)
A Dpthread_key_create.c29 uintptr_t seq = __pthread_keys[cnt].seq; in ___pthread_key_create()
33 && ! atomic_compare_and_exchange_bool_acq (&__pthread_keys[cnt].seq, in ___pthread_key_create()
37 __pthread_keys[cnt].destr = destr; in ___pthread_key_create()
A Dpthread_key_delete.c30 unsigned int seq = __pthread_keys[key].seq; in ___pthread_key_delete()
33 && ! atomic_compare_and_exchange_bool_acq (&__pthread_keys[key].seq, in ___pthread_key_delete()
A Dnptl_deallocate_tsd.c68 == __pthread_keys[idx].seq in __nptl_deallocate_tsd()
71 && __pthread_keys[idx].destr != NULL) in __nptl_deallocate_tsd()
73 __pthread_keys[idx].destr (data); in __nptl_deallocate_tsd()
A Dpthread_setspecific.c39 if (KEY_UNUSED ((seq = __pthread_keys[key].seq))) in ___pthread_setspecific()
52 || KEY_UNUSED ((seq = __pthread_keys[key].seq))) in ___pthread_setspecific()
A Dpthread_getspecific.c59 if (__glibc_unlikely (seq != __pthread_keys[key].seq)) in ___pthread_getspecific()
A DVersions393 __pthread_keys;

Completed in 9 milliseconds