Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何限制 Python 中函数调用的执行时间
我有一个需要 90 毫秒超时的函数。如果以极高的准确性达到该限制,我该如何导致异常或中断或其他任何事情?
谢谢
在后台执行一个线程,等待大约(不能准确地完成)90 ms,然后设置一个原子布尔值来打破“等待”循环。