From 59ab534775e4315e3fa1858bd35ff490e8de10e6 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Thu, 22 May 2025 21:06:36 +0200 Subject: [PATCH] threading.py: comments --- internal_filesystem/lib/threading.py | 1 + 1 file changed, 1 insertion(+) diff --git a/internal_filesystem/lib/threading.py b/internal_filesystem/lib/threading.py index 26db6c9c..92e92755 100644 --- a/internal_filesystem/lib/threading.py +++ b/internal_filesystem/lib/threading.py @@ -19,6 +19,7 @@ class Thread: # small stack sizes 8KB gives segfault directly # 22KB or less is too tight on desktop, 23KB and more is fine stacksize = 24*1024 + #stacksize = 20*1024 print(f"starting thread with stacksize {stacksize}") _thread.stack_size(stacksize) _thread.start_new_thread(self.run, ())