2016-04-19 18:03:26 +01:00
|
|
|
# test threads sleeping
|
|
|
|
#
|
|
|
|
# MIT license; Copyright (c) 2016 Damien P. George on behalf of Pycom Ltd
|
|
|
|
|
2022-08-18 07:57:45 +01:00
|
|
|
import time
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2022-08-18 07:57:45 +01:00
|
|
|
if hasattr(time, "sleep_ms"):
|
|
|
|
sleep_ms = time.sleep_ms
|
|
|
|
else:
|
2016-05-31 17:35:45 +01:00
|
|
|
sleep_ms = lambda t: time.sleep(t / 1000)
|
|
|
|
|
2016-04-19 18:03:26 +01:00
|
|
|
import _thread
|
|
|
|
|
|
|
|
lock = _thread.allocate_lock()
|
2024-01-04 22:53:05 +00:00
|
|
|
n_thread = 0
|
|
|
|
n_thread_max = 4
|
2016-04-19 18:03:26 +01:00
|
|
|
n_finished = 0
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2016-04-19 18:03:26 +01:00
|
|
|
def thread_entry(t):
|
|
|
|
global n_finished
|
2016-05-31 17:35:45 +01:00
|
|
|
sleep_ms(t)
|
|
|
|
sleep_ms(2 * t)
|
2016-04-19 18:03:26 +01:00
|
|
|
with lock:
|
|
|
|
n_finished += 1
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2024-01-04 22:53:05 +00:00
|
|
|
# spawn threads
|
|
|
|
for _ in range(n_thread_max):
|
|
|
|
try:
|
|
|
|
_thread.start_new_thread(thread_entry, (10 * n_thread,))
|
|
|
|
n_thread += 1
|
|
|
|
except OSError:
|
|
|
|
# System cannot create a new thead, so stop trying to create them.
|
|
|
|
break
|
|
|
|
|
|
|
|
# also run the function on this main thread
|
|
|
|
thread_entry(10 * n_thread)
|
|
|
|
n_thread += 1
|
2016-04-19 18:03:26 +01:00
|
|
|
|
|
|
|
# wait for threads to finish
|
|
|
|
while n_finished < n_thread:
|
2016-05-31 17:35:45 +01:00
|
|
|
sleep_ms(100)
|
2024-01-04 22:53:05 +00:00
|
|
|
print("done")
|