2016-04-19 18:03:26 +01:00
|
|
|
# test _thread.exit() function
|
|
|
|
#
|
|
|
|
# MIT license; Copyright (c) 2016 Damien P. George on behalf of Pycom Ltd
|
|
|
|
|
2022-08-18 07:57:45 +01:00
|
|
|
import time
|
2016-04-19 18:03:26 +01:00
|
|
|
import _thread
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2016-04-19 18:03:26 +01:00
|
|
|
def thread_entry():
|
|
|
|
_thread.exit()
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2021-05-10 03:44:47 +01:00
|
|
|
for i in range(2):
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
_thread.start_new_thread(thread_entry, ())
|
|
|
|
break
|
|
|
|
except OSError:
|
|
|
|
pass
|
2016-04-19 18:03:26 +01:00
|
|
|
|
|
|
|
# wait for threads to finish
|
2016-05-31 11:54:34 +01:00
|
|
|
time.sleep(1)
|
2016-04-19 18:03:26 +01:00
|
|
|
print("done")
|