gpt4 book ai didi

c - 死后用子进程替换父进程

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:10:56 27 4
gpt4 key购买 nike

我的目标是制作一个具有父进程和子进程的程序,当其中一个进程被杀死时,它们将被替换。我正在努力解决的部分是 parent 去世的情况。在这种情况下, child 必须加紧成为新的 parent ,然后 fork() 它自己的 child 。当我向父进程发送 SIGKILL 时,我的整个程序似乎突然结束,并且由于我无法处理 SIGKILL,所以我不确定如何正确地执行此操作。

有没有办法让子进程一直运行,从而成为新的父进程?

谢谢

最佳答案

通常情况下,当它的 parent 被杀死时,你派生的 child 不应该被杀死,除非你做类似的事情:How to make child process die after parent exits?

如果父进程被杀死,子进程就会成为 init 进程的子进程。您可能在终端上看到进程在您将 KILL 发送给父进程后立即返回。那是因为 sub-bash 只在等待父进程的 PID。但是 child 其实跑到别的地方去了。

举个例子:

#!/usr/bin/env python
# test_parent_child_kill.py
import os
import time

def child():
print "Child process with PID= %d"%os.getpid()
time.sleep(20)

def parent():
print "Parent process with PID= %d"%os.getpid()
newRef=os.fork()
if newRef==0:
child()
else:
print "Parent process and our child process has PID= %d"%newRef
time.sleep(20)

parent()

然后在 sleep 周期内:

user@mac:/tmp|⇒  python test_parent_child_kill.py
Parent process with PID= 17430
Parent process and our child process has PID= 17431
Child process with PID= 17431

user@mac:/tmp|⇒ kill 17430

user@mac:/tmp|⇒ ps -ef | grep 17431
503 17431 1 0 9:30PM ttys000 0:00.00 /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python test_parent_child_kill.py

所以 child 其实还活着。

--编辑--

  1. 为什么当父进程被杀死时我的程序退出并回到 shell?

Bash 也通过如下方式通过 folk/exec 调用命令:

childPid = fork();
if (childPid == 0){
executeCommand(cmd); //calls execvp
} else {
if (isBackgroundJob(cmd)){
record in list of background jobs
} else {
waitpid (childPid);
}
}

因为从bash的角度来看,你的程序的父程序是子程序,当它从waitpid(childPid)返回时,它会返回提示输入。

  1. 有没有办法留在计划内并继续像以前一样运作,但有了新 parent ?

如果你想“重新附加”可能有点困难,但并非不可能:

Attach to a processes output for viewing

https://unix.stackexchange.com/questions/58550/how-to-view-the-output-of-a-running-process-in-another-bash-session

引用:

http://www.cs.cornell.edu/Courses/cs414/2004su/homework/shell/shell.html

关于c - 死后用子进程替换父进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37064172/

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