gpt4 book ai didi

python杀死父进程但留下子进程

转载 作者:行者123 更新时间:2023-11-28 17:31:28 25 4
gpt4 key购买 nike

当我尝试终止一个 python 进程时,通过 os.system 启动的子进程不会同时终止。

Killing child process when parent crashes in pythonPython Process won't call atexit(atexit 看起来不适用于信号)

这是否意味着我需要自己处理这种情况?如果是这样,这样做的首选方法是什么?

> python main.py
> ps
4792 ttys002 0:00.03 python run.py
4793 ttys002 0:00.03 python loop.py
> kill -15 4792
> ps
4793 ttys002 0:00.03 python loop.py

示例代码:

主要文件

import os
os.system('python loop.py')

循环.py

import time

while True:
time.sleep(1000)

更新1

我做了一些实验,找到了一个可行的版本,但仍然对逻辑感到困惑。

import os
import sys
import signal
import subprocess


def sigterm_handler(_signo, _stack_frame):
# it raises SystemExit(0):
print 'go die'
sys.exit(0)


signal.signal(signal.SIGTERM, sigterm_handler)

try:
# os.system('python loop.py')
# use os.system won't work, it will even ignore the SIGTERM entirely for some reason
subprocess.call(['python', 'loop.py'])
except:
os.killpg(0, signal.SIGKILL)

最佳答案

kill -15 4792 在您的示例中将 SIGTERM 发送到 run.py - 它不会向 loop.py< 发送任何内容(或其父 shell)。默认情况下,SIGTERM 不会传播到进程树中的其他进程。

os.system('python loop.py') 至少启动 两个 进程 shell 和 python 进程。你不需要它;使用 subprocess.check_call(),在没有隐式 shell 的情况下运行单个子进程。顺便说一句,如果你的 subprocess is a Python script; consider importing it and running corresponding functions instead .

os.killpg(0, SIGKILL) 向当前进程组发送SIGKILL 信号。 shell 为每个管道创建一个新的进程组(一个作业),因此父级中的 os.killpg() 对子级没有影响 (请参阅更新) .参见 How to terminate a python subprocess launched with shell=True .

#!/usr/bin/env python
import subprocess
import sys

try:
p = subprocess.Popen([executable, 'loop'])
except EnvironmentError as e: #
sys.exit('failed to start %r, reason: %s' % (executable, e))
else:
try: # wait for the child process to finish
p.wait()
except KeyboardInterrupt: # on Ctrl+C (SIGINT)
#NOTE: the shell sends SIGINT (on CtrL+C) to the executable itself if
# the child process is in the same foreground process group as its parent
sys.exit("interrupted")

更新

似乎 os.system(cmd) 没有为 cmd 创建一个新的进程组:

>>> import os
>>> os.getpgrp()
16180
>>> import sys
>>> cmd = sys.executable + ' -c "import os; print(os.getpgrp())"'
>>> os.system(cmd) #!!! same process group
16180
0
>>> import subprocess
>>> import shlex
>>> subprocess.check_call(shlex.split(cmd))
16180
0
>>> subprocess.check_call(cmd, shell=True)
16180
0
>>> subprocess.check_call(cmd, shell=True, preexec_fn=os.setpgrp) #!!! new
18644
0

因此,您示例中的 os.system(cmd) 应该被 os.killpg() 调用终止。

虽然如果我在 bash 中运行它;它确实为每个管道创建了一个新的进程组:

$ python -c "import os; print(os.getpgrp())"
25225
$ python -c "import os; print(os.getpgrp())"
25248

关于python杀死父进程但留下子进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34020226/

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