Browse Source
Do not use the new TLS code for non-threaded builds even if USE_TLS is set
Workaround for #1761 as that exposed a problem in the new code (which was intended to speed up multithreaded code only anyway).
tags/v0.3.4
Martin Kroeker
GitHub
7 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
driver/others/memory.c
|
|
|
@@ -73,7 +73,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
|
|
|
|
|
#include "common.h" |
|
|
|
|
|
|
|
#if defined(USE_TLS) |
|
|
|
#if defined(USE_TLS) && defined(SMP) |
|
|
|
#define COMPILE_TLS |
|
|
|
#if defined(__GLIBC_PREREQ) |
|
|
|
#if !__GLIBC_PREREQ(2,20) |
|
|
|
|