Home
last modified time | relevance | path

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

/netbsd/src/external/bsd/libc++/dist/libcxxrt/src/
Dexception.cc297 static pthread_key_t eh_key; variable
386 pthread_key_create(&eh_key, thread_cleanup); in init_key()
387 pthread_setspecific(eh_key, reinterpret_cast<void *>(0x42)); in init_key()
388 fakeTLS = (pthread_getspecific(eh_key) != reinterpret_cast<void *>(0x42)); in init_key()
389 pthread_setspecific(eh_key, 0); in init_key()
402 __cxa_thread_info *info = static_cast<__cxa_thread_info*>(pthread_getspecific(eh_key)); in thread_info()
406 pthread_setspecific(eh_key, info); in thread_info()
417 return static_cast<__cxa_thread_info*>(pthread_getspecific(eh_key)); in thread_info_fast()