We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d3c0d4 commit 28185bbCopy full SHA for 28185bb
1 file changed
tests/thread/thread_stacksize1.py
@@ -38,6 +38,9 @@ def thread_entry():
38
for i in range(n_thread):
39
_thread.start_new_thread(thread_entry, ())
40
41
+# reset stack size to default (for subsequent scripts on baremetal)
42
+_thread.stack_size()
43
+
44
# busy wait for threads to finish
45
while n_finished < n_thread:
46
pass
0 commit comments