2016-04-19 17:03:26 +00:00
|
|
|
# test raising SystemExit to finish a thread
|
|
|
|
#
|
2020-06-03 23:40:05 +01:00
|
|
|
# SPDX-FileCopyrightText: Copyright (c) 2016 Damien P. George on behalf of Pycom Ltd
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
2016-04-19 17:03:26 +00:00
|
|
|
|
|
|
|
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
|
2016-05-31 11:54:34 +01:00
|
|
|
time.sleep(1)
|
2016-04-19 17:03:26 +00:00
|
|
|
print('done')
|