mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 21:53:23 +00:00
don't use thread-local storage if running a single thread
This commit is contained in:
parent
3f5cea4a9e
commit
04a2cce830
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue