Skip to content

Commit

Permalink
fixed tls on win64
Browse files Browse the repository at this point in the history
  • Loading branch information
programmerjake committed May 30, 2016
1 parent 0c1778b commit 2631995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/tls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 2631995

Please sign in to comment.