gpt4 book ai didi

linux - 如何使用 linux 系统调用杀死生成的 "/bin/sh -c"及其所有子进程

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

当我使用 & 运算符在 shell 中启动后台进程时,如果我关闭终端窗口,所有这些子进程都会结束。

如何复制此行为以关闭任意进程及其子进程?
例如,如果我使用 execve 系统调用来执行此命令行:

/bin/sh -c "watch ls & watch ls -lah"

并且我有/bin/sh 进程的 PID,我尝试发送 SIGHUP 信号,该信号应该传输给/bin/sh 的子进程,但其他进程继续运行。

为什么两个“watch”进程没有被杀死?有没有办法杀死/bin/sh 也能杀死它们?

最佳答案

您可以使用 kill 系统调用。

#include <sys/types.h>
#include <signal.h>

int kill (pid_t pid, int sig);

您应该发送 SIGKILL 信号。关于杀死子进程,看Why child process still alive after parent process was killed in Linux?

关于linux - 如何使用 linux 系统调用杀死生成的 "/bin/sh -c"及其所有子进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51255794/

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