Skip to content

Commit 59ab534

Browse files
threading.py: comments
1 parent 23563bc commit 59ab534

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

internal_filesystem/lib/threading.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def start(self):
1919
# small stack sizes 8KB gives segfault directly
2020
# 22KB or less is too tight on desktop, 23KB and more is fine
2121
stacksize = 24*1024
22+
#stacksize = 20*1024
2223
print(f"starting thread with stacksize {stacksize}")
2324
_thread.stack_size(stacksize)
2425
_thread.start_new_thread(self.run, ())

0 commit comments

Comments
 (0)