Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dtsd_malloc_thread_cleanup.h6 extern __thread tsd_t tsd_tls;
15 tsd_cleanup(&tsd_tls); in tsd_cleanup_wrapper()
51 return &tsd_tls; in tsd_get()
56 if (likely(&tsd_tls != val)) { in tsd_set()
57 tsd_tls = (*val); in tsd_set()
H A Dtsd_tls.h6 extern __thread tsd_t tsd_tls;
44 return &tsd_tls; in tsd_get()
50 if (likely(&tsd_tls != val)) { in tsd_set()
51 tsd_tls = (*val); in tsd_set()
53 if (pthread_setspecific(tsd_tsd, (void *)(&tsd_tls)) != 0) { in tsd_set()
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dtsd.c16 __thread tsd_t JEMALLOC_TLS_MODEL tsd_tls = TSD_INITIALIZER; variable
20 __thread tsd_t JEMALLOC_TLS_MODEL tsd_tls = TSD_INITIALIZER; variable