Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/jemalloc/include/jemalloc/internal no tls for s...



details:   https://anonhg.NetBSD.org/src/rev/c87832f78d5d
branches:  trunk
changeset: 455934:c87832f78d5d
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Apr 18 16:44:25 2019 +0000

description:
no tls for sun2 either.

diffstat:

 external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r bbe52a9da019 -r c87832f78d5d external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
--- a/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h  Thu Apr 18 14:01:28 2019 +0000
+++ b/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h  Thu Apr 18 16:44:25 2019 +0000
@@ -151,7 +151,7 @@
 /* #undef JEMALLOC_MUTEX_INIT_CB */
 
 /* Non-empty if the tls_model attribute is supported. */
-#ifndef __vax__
+#if !defined(__vax__) && !defined(__mc68010__)
 #define JEMALLOC_TLS_MODEL __attribute__((tls_model("initial-exec")))
 #endif
 
@@ -235,7 +235,7 @@
 /* #undef JEMALLOC_RETAIN */
 
 /* TLS is used to map arenas and magazine caches to threads. */
-#ifndef __vax__
+#if !defined(__vax__) && !defined(__mc68010__)
 #define JEMALLOC_TLS 
 #endif
 



Home | Main Index | Thread Index | Old Index