我想拨打foo(n)
但是如果它运行超过10秒就停止它。有什么好办法呢?
我可以看到我理论上可以修改foo
本身来定期检查它运行了多长时间但我宁愿不这样做。
答案 0 :(得分:36)
你走了:
import multiprocessing
import time
# Your foo function
def foo(n):
for i in range(10000 * n):
print "Tick"
time.sleep(1)
if __name__ == '__main__':
# Start foo as a process
p = multiprocessing.Process(target=foo, name="Foo", args=(10,))
p.start()
# Wait 10 seconds for foo
time.sleep(10)
# Terminate foo
p.terminate()
# Cleanup
p.join()
foo
等待10秒,然后将其杀死。
<强>更新强>
仅在流程正在运行时终止流程。
# If thread is active
if p.is_alive():
print "foo is running... let's kill it..."
# Terminate foo
p.terminate()
更新2:推荐
将join
与timeout
一起使用。如果foo
在超时之前完成,那么main可以继续。
# Wait a maximum of 10 seconds for foo
# Usage: join([timeout in seconds])
p.join(10)
# If thread is active
if p.is_alive():
print "foo is running... let's kill it..."
# Terminate foo
p.terminate()
p.join()
答案 1 :(得分:2)
import signal
#Sets an handler function, you can comment it if you don't need it.
signal.signal(signal.SIGALRM,handler_function)
#Sets an alarm in 10 seconds
#If uncaught will terminate your process.
signal.alarm(10)
超时不是很精确,但如果你不需要极高的精度就可以做到。
另一种方法是使用资源模块,并设置最大CPU时间。