From e437bed00671579c0abf5a44710a37105b51d4a3 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Sun, 30 Jun 2024 20:53:43 -0700 Subject: [PATCH] Fix crash caused when Windows needs a lot of TLS --- libc/runtime/enable_tls.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libc/runtime/enable_tls.c b/libc/runtime/enable_tls.c index ccc662568..3b3c098ff 100644 --- a/libc/runtime/enable_tls.c +++ b/libc/runtime/enable_tls.c @@ -24,6 +24,7 @@ #include "libc/intrin/dll.h" #include "libc/intrin/getenv.internal.h" #include "libc/intrin/kprintf.h" +#include "libc/intrin/maps.h" #include "libc/intrin/weaken.h" #include "libc/macros.internal.h" #include "libc/nt/files.h" @@ -37,6 +38,8 @@ #include "libc/stdalign.internal.h" #include "libc/str/locale.h" #include "libc/str/str.h" +#include "libc/sysv/consts/map.h" +#include "libc/sysv/consts/prot.h" #include "libc/thread/posixthread.internal.h" #include "libc/thread/thread.h" #include "libc/thread/tls.h" @@ -168,7 +171,8 @@ textstartup void __enable_tls(void) { if (I(_tls_align) <= TLS_ALIGNMENT && size <= sizeof(__static_tls)) { mem = __static_tls; } else { - mem = _weaken(_mapanon)(size); + mem = __mmap(0, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, + -1, 0); } struct CosmoTib *tib =