circuitpython/tests/thread/thread_exit2.py

22 lines
434 B
Python
Raw Normal View History

# test raising SystemExit to finish a 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
try:
import utime as time
except ImportError:
import time
import _thread
def thread_entry():
raise SystemExit
_thread.start_new_thread(thread_entry, ())
_thread.start_new_thread(thread_entry, ())
# wait for threads to finish
time.sleep(1)
print('done')