gpt4 book ai didi

python - python中的子进程终止

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

我有一个 Python 脚本,它使用 subprocess.Popen() 启动另一个 Python 脚本的子进程。此子进程使用 Popen 启动另一个子进程(另一个 Python 脚本)。脚本 A 调用脚本 B,脚本 B 调用脚本 C。如果我使用 os.kill() 终止进程脚本 B,它会终止运行脚本 C 的进程。如果没有,有什么办法可以做到这一点。

最佳答案

就目前而言,如果脚本 A 使用 os.kill 杀死 B 那么 C 本身将不会杀了。

为了确保这一点,脚本 B 可以在退出时负责杀死 C

# this is in script B
import functools, atexit

def kill_children(*pids):
import os, signal

for pid in pids or []:
os.kill(pid, signal.SIGTERM)

# we start a process for C
c_pid = ...

# kill C when we we exit
atexit.register(functools.partial(kill_children, c_pid))

关于python - python中的子进程终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40166227/

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