3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

don't use thread-local storage if running a single thread

This commit is contained in:
Nuno Lopes 2019-06-12 09:55:48 +01:00
parent 3f5cea4a9e
commit 04a2cce830

View file

@ -218,7 +218,7 @@ void * memory::allocate(char const* file, int line, char const* obj, size_t s) {
} }
#endif #endif
#if defined(_WINDOWS) || defined(_USE_THREAD_LOCAL) #if !defined(SINGLE_THREAD) && (defined(_WINDOWS) || defined(_USE_THREAD_LOCAL))
// ================================== // ==================================
// ================================== // ==================================
// THREAD LOCAL VERSION // THREAD LOCAL VERSION