gpt4 book ai didi

linux - 我可以等待特定的子进程在 perl 中终止吗

转载 作者:太空宇宙 更新时间:2023-11-04 12:58:35 27 4
gpt4 key购买 nike

目前,我正在尝试通过让 proc A 创建 proc B 和 proc B 创建 proc C 来创建一个孤立进程。然后,我想杀死 proc B,以便 proc C 不再附加到 proc 的进程树A.不过我也想知道proc C在proc A中的进程id,举个例子,我试过:

use FileHandle;
pipe(READ, WRITE);

WRITE->autoflush();
my $pid1 = fork();
if ($pid1) {
#Proc A
waitpid($pid1, 0);
close WRITE;
my $msg = <READ>;
print "msg: $msg\n";
} elsif ($pid1 == 0) {
#Proc B
my $pid2 = fork();
if ($pid2) {
#Proc B
print WRITE $pid2;
exit 0;
} elsif ($pid2 == 0) {
#Proc C
print "child 2 proc $$\n";
sleep(5);
exit 0;
}
}

不幸的是,运行它会使 proc A 等待 proc C 完成(休眠 5),然后再打印 proc C 的 id,这不是我想要的。有没有办法让 waitpid 函数在 proc B 退出后返回?

或者,是否有更好的方法来创建孤儿进程?

编辑:添加了关于读/写管道的信息。

最佳答案

当我运行您的脚本时,它的行为与您描述的不同。这可能与您忽略的 READ 和 WRITE 句柄的机制有关。

不过,我认为 POSIX::setsid() 函数可以满足您的需求。它将进程放入自己的进程组中,该进程组与父进程的控制 TTY 断开连接:

use POSIX qw();


# after forking, in the child process that you want to become an orphan
POSIX::setsid();

关于linux - 我可以等待特定的子进程在 perl 中终止吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34889133/

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