34 #ifndef GRPC_SUPPORT_TLS_MSVC_H 35 #define GRPC_SUPPORT_TLS_MSVC_H 44 #define GPR_TLS_DECL(name) \ 45 static __declspec(thread) struct gpr_msvc_thread_local name = {0} 47 #define gpr_tls_init(tls) \ 50 #define gpr_tls_destroy(tls) \ 53 #define gpr_tls_set(tls, new_value) (((tls)->value) = (new_value)) 54 #define gpr_tls_get(tls) ((tls)->value) intptr_t value
Definition: tls_msvc.h:41
Definition: tls_msvc.h:40