Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dtsd_win.h11 extern DWORD tsd_tsd;
19 tsd_wrapper_t *wrapper = (tsd_wrapper_t *)TlsGetValue(tsd_tsd); in tsd_cleanup_wrapper()
40 if (!TlsSetValue(tsd_tsd, (void *)wrapper)) { in tsd_wrapper_set()
49 tsd_wrapper_t *wrapper = (tsd_wrapper_t *) TlsGetValue(tsd_tsd); in tsd_wrapper_get()
71 tsd_tsd = TlsAlloc(); in tsd_boot0()
72 if (tsd_tsd == TLS_OUT_OF_INDEXES) { in tsd_boot0()
H A Dtsd_generic.h25 extern pthread_key_t tsd_tsd;
40 if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) in tsd_cleanup_wrapper()
55 if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) { in tsd_wrapper_set()
63 tsd_wrapper_t *wrapper = (tsd_wrapper_t *)pthread_getspecific(tsd_tsd); in tsd_wrapper_get()
91 if (pthread_key_create(&tsd_tsd, tsd_cleanup_wrapper) != 0) { in tsd_boot0()
H A Dtsd_tls.h7 extern pthread_key_t tsd_tsd;
13 if (pthread_key_create(&tsd_tsd, &tsd_cleanup) != 0) { in tsd_boot0()
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.c21 pthread_key_t tsd_tsd; variable
24 DWORD tsd_tsd; variable
39 pthread_key_t tsd_tsd; variable