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

/freebsd-11.0-release/contrib/libcxxrt/
H A Dexception.cc297 static pthread_key_t eh_key; variable
375 * Initialise eh_key.
386 pthread_key_create(&eh_key, thread_cleanup);
387 pthread_setspecific(eh_key, reinterpret_cast<void *>(0x42));
388 fakeTLS = (pthread_getspecific(eh_key) != reinterpret_cast<void *>(0x42));
389 pthread_setspecific(eh_key, 0);
402 __cxa_thread_info *info = static_cast<__cxa_thread_info*>(pthread_getspecific(eh_key));
406 pthread_setspecific(eh_key, info);
417 return static_cast<__cxa_thread_info*>(pthread_getspecific(eh_key));

Completed in 39 milliseconds