# This test ensures that the scheduler doesn't trigger any assertions# while dealing with concurrent access from multiple threads.import _threadimport utimeimport micropythonimport gctry:micropython.scheduleexcept AttributeError:print("SKIP")raise SystemExitgc.disable()_NUM_TASKS = 10000_TIMEOUT_MS = 10000n = 0 # How many times the task successfully ran.t = None # Start time of test, assigned here to preallocate entry in globals dict.def task(x):global nn += 1def thread():while True:try:micropython.schedule(task, None)except RuntimeError:# Queue full, back off.utime.sleep_ms(10)for i in range(8):_thread.start_new_thread(thread, ())# Wait up to 10 seconds for 10000 tasks to be scheduled.t = utime.ticks_ms()while n < _NUM_TASKS and utime.ticks_diff(utime.ticks_ms(), t) < _TIMEOUT_MS:passif n < _NUM_TASKS:# Not all the tasks were scheduled, likely the scheduler stopped working.print(n)else:print("PASS")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。