Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/
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()
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()
Dprivate_namespace.h367 #define tsd_tls JEMALLOC_N(tsd_tls) macro
/freebsd-12-stable/contrib/jemalloc/src/
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