Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/scudo/
H A Dscudo_tsd_exclusive.cpp21 static pthread_key_t PThreadKey; variable
41 if (LIKELY(pthread_setspecific(PThreadKey, in teardownThread()
51 CHECK_EQ(pthread_key_create(&PThreadKey, teardownThread), 0); in initOnce()
60 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>( in initThread()
H A Dscudo_tsd_shared.cpp21 pthread_key_t PThreadKey; variable
35 CHECK_EQ(pthread_key_create(&PThreadKey, NULL), 0); in initOnce()
57 CHECK_EQ(pthread_setspecific(PThreadKey, reinterpret_cast<void *>(TSD)), 0); in setCurrentTSD()
H A Dscudo_tsd_shared.inc20 extern pthread_key_t PThreadKey;
33 return reinterpret_cast<ScudoTSD *>(pthread_getspecific(PThreadKey));
/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_basic_logging.cc75 static pthread_key_t PThreadKey; variable
133 pthread_setspecific(PThreadKey, &TLD); in getThreadLocalData()
386 pthread_key_create(&PThreadKey, TLDDestructor); in basicLoggingInit()