gpt4 book ai didi

python - 为什么 children 死不了?

转载 作者:IT王子 更新时间:2023-10-29 00:01:10 26 4
gpt4 key购买 nike

我希望 terminate() 方法终止这两个进程:

import multiprocessing
import time

def foo():
while True:
time.sleep(1)

def bar():
while True:
time.sleep(1)

if __name__ == '__main__':
while True:
p_foo = multiprocessing.Process(target=foo, name='foo')
p_bar = multiprocessing.Process(target=bar, name='bar')
p_foo.start()
p_bar.start()
time.sleep(1)
p_foo.terminate()
p_bar.terminate()
print p_foo
print p_bar

运行代码给出:

<Process(foo, started)>
<Process(bar, started)>
<Process(foo, started)>
<Process(bar, started)>
...

我期待:

<Process(foo, stopped)>
<Process(bar, stopped)>
<Process(foo, stopped)>
<Process(bar, stopped)>
...

最佳答案

因为 terminate函数只是发送 SIGTERM 信号进行处理,但是 signals are asynchronous ,所以你可以睡一会儿,或者wait用于进程终止(信号接收)。

例如,如果您在终止后添加字符串 time.sleep(.1),它可能会被终止。

关于python - 为什么 children 死不了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11942654/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com