circuitpython/tests/thread/thread_start1.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
511 B
Python
Raw Permalink Normal View History

# test basic capability to start a new thread
#
2020-06-03 18:40:05 -04:00
# SPDX-FileCopyrightText: Copyright (c) 2016 Damien P. George on behalf of Pycom Ltd
#
# SPDX-License-Identifier: MIT
2023-08-22 11:15:46 -04:00
import time
import _thread
2021-03-15 09:57:36 -04:00
def foo():
pass
2021-03-15 09:57:36 -04:00
def thread_entry(n):
for i in range(n):
foo()
2021-03-15 09:57:36 -04:00
for i in range(2):
while True:
try:
_thread.start_new_thread(thread_entry, ((i + 1) * 10,))
break
except OSError:
pass
# wait for threads to finish
time.sleep(1)
2021-03-15 09:57:36 -04:00
print("done")