From 26319959fae6ef7725228832fc2342b5fe683a18 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Sun, 29 May 2016 21:32:45 -0600 Subject: [PATCH] fixed tls on win64 --- src/util/tls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/tls.cpp b/src/util/tls.cpp index d01b983..c89c075 100644 --- a/src/util/tls.cpp +++ b/src/util/tls.cpp @@ -72,7 +72,7 @@ TLS *&TLS::getTlsSlowHelper() } std::atomic_size_t TLS::next_variable_position(0); -const std::size_t TLS::tls_memory_size = 1 << 22; +const std::size_t TLS::tls_memory_size = 1 << 23; TLS::TLS() : memory(new char[tls_memory_size])