From 00b658530d94c5fd827bec793e3448838a6221f1 Mon Sep 17 00:00:00 2001 From: zeliard <spacesun@naver.com> Date: Wed, 22 Apr 2015 12:42:26 +0900 Subject: [PATCH] add missing defines on windows (WIN64) --- include/grpc/support/port_platform.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/grpc/support/port_platform.h b/include/grpc/support/port_platform.h index 0bb3e16c8d..73eedddf44 100644 --- a/include/grpc/support/port_platform.h +++ b/include/grpc/support/port_platform.h @@ -45,8 +45,10 @@ #define GPR_WINSOCK_SOCKET 1 #ifdef __GNUC__ #define GPR_GCC_ATOMIC 1 +#define GPR_GCC_TLS 1 #else #define GPR_WIN32_ATOMIC 1 +#define GPR_MSVC_TLS 1 #endif #elif defined(_WIN32) || defined(WIN32) #define GPR_ARCH_32 1 -- GitLab