gpt4 book ai didi

c++ - 如何杀死旧的父进程?

转载 作者:太空宇宙 更新时间:2023-11-04 10:09:46 25 4
gpt4 key购买 nike

如何在 for 循环中杀死旧的父进程?我有以下分支父进程

if (pid > 0){
pid_t ppid = getppid();
for (int parentid = ppid; parentid > 1; parentid++) {
parentid = ppid;
pid_t ppid = fork();
if(ppid > 1) {
execl("/usr/bin/elinks","elinks","google.com",(char *) NULL);
}
sleep(5);
}
exit(EXIT_SUCCESS);
}

我有一个不断运行的子进程

system("xdotool......")

我尝试将 kill(ppid,SIGTERM) 放入 for 循环中,但它被忽略了。只有将它放在循环之后才会发出 kill 信号,然后整个程序退出。父叉不断堆积并消耗 ram,因此我有必要在创建新父叉时杀死旧父叉。

最佳答案

您还需要确保您的服务有适当的终止条件for循环:

pid_t ppid = getppid();

for (int parentid = ppid; parentid > 1; parentid++) {

parentid = ppid;

pid_t ppid = fork();

您确定您的 for 循环按预期结束了吗?

如果因为fork()成功,parentid总是大于1,怎么办

循环是否终止?

fork函数返回0给子进程,子进程的PID给父进程。

因此,您可以使用这段代码来确定正在执行的代码是 child 或 parent :

pid_t pid = fork();

if (pid == 0)
{
/* At this point, the code that is executing is the child */
}
else if (pid > 0)
{
/* At this point, the code that is executing is the parent */
}
else
{
/* The fork function call failed */
}

您的代码需要区分 child 和 parent ;您可以在 block 中使用退出系统调用上面的父级代码。

关于c++ - 如何杀死旧的父进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49788507/

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