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

/freebsd-9.3-release/contrib/libcxxrt/
H A Dexception.cc297 static pthread_key_t eh_key; variable
370 * Initialise eh_key.
381 pthread_key_create(&eh_key, thread_cleanup);
382 pthread_setspecific(eh_key, (void*)0x42);
383 fakeTLS = (pthread_getspecific(eh_key) != (void*)0x42);
384 pthread_setspecific(eh_key, 0);
397 __cxa_thread_info *info = (__cxa_thread_info*)pthread_getspecific(eh_key);
401 pthread_setspecific(eh_key, info);
412 return (__cxa_thread_info*)pthread_getspecific(eh_key);

Completed in 76 milliseconds