aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/arena.cc
diff options
context:
space:
mode:
authorGravatar Jisi Liu <jisi.liu@gmail.com>2015-03-01 19:44:46 -0800
committerGravatar Jisi Liu <jisi.liu@gmail.com>2015-03-01 19:44:46 -0800
commit0a25cfe69d3c6f04d3d0a779549f126731aa4964 (patch)
tree42dbbc9203876a56c38abdd1e57952a03c384073 /src/google/protobuf/arena.cc
parentb25caa5c0acf3f4f9f8a32fdb9105701f3909723 (diff)
Use portable GOOGLE_PROTOBUF_THREAD_LOCAL instead of __thread.
Change-Id: Iaa75f8333541bc378bea699e7f147c7f17b652ad
Diffstat (limited to 'src/google/protobuf/arena.cc')
-rwxr-xr-x[-rw-r--r--]src/google/protobuf/arena.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/arena.cc b/src/google/protobuf/arena.cc
index e9ee6170..bda37413 100644..100755
--- a/src/google/protobuf/arena.cc
+++ b/src/google/protobuf/arena.cc
@@ -44,7 +44,7 @@ Arena::ThreadCache& Arena::thread_cache() {
return thread_cache_;
}
#else
-__thread Arena::ThreadCache Arena::thread_cache_ = { -1, NULL };
+GOOGLE_THREAD_LOCAL Arena::ThreadCache Arena::thread_cache_ = { -1, NULL };
#endif
void Arena::Init() {