为什么孩子没有死吗?(Why are the children failing to die?)

2019-09-21 03:56发布

我预计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)>
...

Answer 1:

由于终止函数只是发送SIGTERM信号来处理,但信号是异步的 ,所以你可以睡一段时间,或等待的过程终止(信号接收)。

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



文章来源: Why are the children failing to die?