Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd_malloc_thread_cleanup.h8 extern JEMALLOC_TSD_TYPE_ATTR(tsd_t) tsd_tls;
17 tsd_cleanup(&tsd_tls); in tsd_cleanup_wrapper()
52 return &tsd_tls; in tsd_get()
57 if (likely(&tsd_tls != val)) { in tsd_set()
58 tsd_tls = (*val); in tsd_set()
H A Dtsd_tls.h8 extern JEMALLOC_TSD_TYPE_ATTR(tsd_t) tsd_tls;
45 return &tsd_tls; in tsd_get()
51 if (likely(&tsd_tls != val)) { in tsd_set()
52 tsd_tls = (*val); in tsd_set()
54 if (pthread_setspecific(tsd_tsd, (void *)(&tsd_tls)) != 0) { in tsd_set()
/freebsd/contrib/jemalloc/src/
H A Dtsd.c20 JEMALLOC_TSD_TYPE_ATTR(tsd_t) tsd_tls = TSD_INITIALIZER;
24 JEMALLOC_TSD_TYPE_ATTR(tsd_t) tsd_tls = TSD_INITIALIZER;
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.h411 #define tsd_tls JEMALLOC_N(tsd_tls) macro