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, ())