Home
last modified time | relevance | path

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

/freebsd/contrib/libcxxrt/
H A Dexception.cc377 static pthread_key_t eh_key; variable
466 pthread_key_create(&eh_key, thread_cleanup); in init_key()
467 pthread_setspecific(eh_key, reinterpret_cast<void *>(0x42)); in init_key()
468 fakeTLS = (pthread_getspecific(eh_key) != reinterpret_cast<void *>(0x42)); in init_key()
469 pthread_setspecific(eh_key, 0); in init_key()
482 __cxa_thread_info *info = static_cast<__cxa_thread_info*>(pthread_getspecific(eh_key)); in thread_info()
486 pthread_setspecific(eh_key, info); in thread_info()
497 return static_cast<__cxa_thread_info*>(pthread_getspecific(eh_key)); in thread_info_fast()