2016-04-19 13:03:26 -04:00
|
|
|
# test capability to start a thread with keyword args
|
|
|
|
#
|
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
|
|
|
|
2023-08-22 11:15:46 -04:00
|
|
|
import time
|
2016-04-19 13:03:26 -04:00
|
|
|
import _thread
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2016-04-19 13:03:26 -04:00
|
|
|
def thread_entry(a0, a1, a2, a3):
|
2021-03-15 09:57:36 -04:00
|
|
|
print("thread", a0, a1, a2, a3)
|
|
|
|
|
2016-04-19 13:03:26 -04:00
|
|
|
|
|
|
|
# spawn thread using kw args
|
2021-03-15 09:57:36 -04:00
|
|
|
_thread.start_new_thread(thread_entry, (10, 20), {"a2": 0, "a3": 1})
|
2016-04-19 13:03:26 -04:00
|
|
|
|
|
|
|
# wait for thread to finish
|
2016-05-31 06:54:34 -04:00
|
|
|
time.sleep(1)
|
2016-12-28 21:12:06 -05:00
|
|
|
|
|
|
|
# incorrect argument where dictionary is needed for keyword args
|
|
|
|
try:
|
|
|
|
_thread.start_new_thread(thread_entry, (), ())
|
|
|
|
except TypeError:
|
2021-03-15 09:57:36 -04:00
|
|
|
print("TypeError")
|
2016-12-28 21:12:06 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
print("done")
|