circuitpython/tests/thread/thread_lock2.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
457 B
Python
Raw Normal View History

# test _thread lock objects with multiple threads
#
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
2023-08-22 11:15:46 -04:00
import time
import _thread
lock = _thread.allocate_lock()
2021-03-15 09:57:36 -04:00
def thread_entry():
lock.acquire()
2021-03-15 09:57:36 -04:00
print("have it")
lock.release()
2021-03-15 09:57:36 -04:00
# spawn the threads
for i in range(4):
_thread.start_new_thread(thread_entry, ())
# wait for threads to finish
time.sleep(1)
2021-03-15 09:57:36 -04:00
print("done")