Home
last modified time | relevance | path

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

/rocksdb-6.9/util/
Dthread_local.cc150 pthread_key_t pthread_key_; member in ROCKSDB_NAMESPACE::ThreadLocalPtr::StaticMeta
288 pthread_setspecific(inst->pthread_key_, nullptr); in OnThreadExit()
311 pthread_key_(0) { in StaticMeta()
312 if (pthread_key_create(&pthread_key_, &OnThreadExit) != 0) { in StaticMeta()
333 static_cast<ThreadData*>(pthread_getspecific(Instance()->pthread_key_)); in StaticMeta()
348 wintlscleanup::thread_local_key = pthread_key_; in StaticMeta()
373 static_cast<ThreadData*>(pthread_getspecific(Instance()->pthread_key_)); in GetThreadLocal()
387 if (pthread_setspecific(inst->pthread_key_, tls_) != 0) { in GetThreadLocal()