11

我希望该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)>
...
4

1 回答 1

7

因为终止函数只是向进程发送 SIGTERM 信号,但信号是异步的,所以你可以休眠一段时间,或者等待进程终止(信号接收)。

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

于 2012-08-13T21:36:54.680 回答