2016-04-19 13:03:26 -04:00
|
|
|
# test threads sleeping
|
|
|
|
#
|
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
|
2016-04-19 13:03:26 -04:00
|
|
|
|
2022-08-18 02:57:45 -04:00
|
|
|
import time
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2022-08-18 02:57:45 -04:00
|
|
|
if hasattr(time, "sleep_ms"):
|
|
|
|
sleep_ms = time.sleep_ms
|
|
|
|
else:
|
2016-05-31 12:35:45 -04:00
|
|
|
sleep_ms = lambda t: time.sleep(t / 1000)
|
|
|
|
|
2016-04-19 13:03:26 -04:00
|
|
|
import _thread
|
|
|
|
|
|
|
|
lock = _thread.allocate_lock()
|
2016-05-31 12:35:45 -04:00
|
|
|
n_thread = 4
|
2016-04-19 13:03:26 -04:00
|
|
|
n_finished = 0
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2016-04-19 13:03:26 -04:00
|
|
|
def thread_entry(t):
|
|
|
|
global n_finished
|
2016-05-31 12:35:45 -04:00
|
|
|
sleep_ms(t)
|
|
|
|
sleep_ms(2 * t)
|
2016-04-19 13:03:26 -04:00
|
|
|
with lock:
|
|
|
|
n_finished += 1
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2016-04-19 13:03:26 -04:00
|
|
|
for i in range(n_thread):
|
2016-05-31 12:35:45 -04:00
|
|
|
_thread.start_new_thread(thread_entry, (10 * i,))
|
2016-04-19 13:03:26 -04:00
|
|
|
|
|
|
|
# wait for threads to finish
|
|
|
|
while n_finished < n_thread:
|
2016-05-31 12:35:45 -04:00
|
|
|
sleep_ms(100)
|
2021-03-15 09:57:36 -04:00
|
|
|
print("done", n_thread)
|