atexit处理程序没有响应信号

时间:2018-02-10 16:15:00

标签: python windows signals interrupt kill

我有两个python文件:

a.py:

import subprocess, time, os, signal

myprocess = subprocess.Popen("b.py", shell=True)
time.sleep(2)
os.kill(myprocess.pid, signal.SIGTERM)

b.py:

import atexit

def cleanup():
    print "Cleaning up things before the program exits..."

atexit.register(cleanup)

print "Hello world!"

while True:
    pass

a.py正在产生b.py,并且在2秒之后它正在杀死该进程。问题是我希望cleanup函数在b.py被调用之前被调用,但是我无法让它工作。

我还在SIGKILL函数中尝试了SIGINTos.kill,但对我来说都没有。

当前输出(a.py):

Hello, World!
(2 seconds later, program ends)

预期输出(a.py):

Hello, World!
(2 seconds later)
Cleaning up things before the program exits...
(program ends)

1 个答案:

答案 0 :(得分:1)

为Windows平台使用不同的信号:signal.CTRL_C_EVENT

a.py中多放一些睡眠,否则子进程在父进程退出之前没有机会进行清理:

import subprocess, time, os, signal
myprocess = subprocess.Popen("b.py", shell=True)
time.sleep(2)
os.kill(myprocess.pid, signal.CTRL_C_EVENT)
time.sleep(2)

如果你真的不需要shell功能,我也想阻止你使用shell:

import subprocess, time, os, signal, sys
myprocess = subprocess.Popen([sys.executable, "b.py"])

Linux / macOS 用户:signal.CTRL_C_EVENT不存在,您需要signal.SIGINT