gpt4 book ai didi

c++ - SIGTSTP 信号不阻止 child ?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:11:18 26 4
gpt4 key购买 nike

我正在尝试编写一个 fork 的程序,子进程执行一个命令,然后将控制权返回给父进程。不过,我无法让 SIGTSTP (C-z) 信号按预期工作......我希望 parent 忽略它,但 child 停止并将控制权返回给 parent ,以便 child 以后可以恢复或杀死(使用内置命令)。我将相关代码隔离到一个较小的程序中只是为了测试它,看起来 A) child 在键入 C-z 时不会停止,或者 B)它确实停止了,但不会将控制权返回给 parent (我是倾向于这个是因为当我将 cat 用于标准输入时,它在 C-z 之后的行为有所不同)。这是我的代码。

#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <cstring>
#include <unistd.h>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <string>
#include <signal.h>


int main(){
std::cout.setf(std::ios::unitbuf);

std::vector<std::string> vec; vec.push_back("cat");
std::vector<char*> chvec;
for(unsigned int i = 0; i < vec.size(); i++){
chvec.push_back(&vec[i][0]);
}
chvec.push_back(NULL);
vec.erase(vec.begin(), vec.begin() + chvec.size());

char** argv = &chvec[0];
signal(SIGTSTP,SIG_IGN);

pid_t pid;
if((pid = fork()) == 0){
signal(SIGTSTP,SIG_DFL);
/*pid = getpid();
setpgid(pid,pid);*/
std::cout << "before exec" << std::endl;
execvp(argv[0],argv);
perror("exec");
}
else{
//setpgid(pid,pid);
int status;
waitpid(pid,&status,0);
if(WIFEXITED(status) || WIFSIGNALED(status)){
std::cout << "exited or signaled" << std::endl;
}
if(WIFSTOPPED(status)){
std::cout << "process stopped" << std::endl;
}
//std::cout << "process exited" << std::endl;
pause();
}
return EXIT_SUCCESS;
}

最佳答案

评论中已经指出,您需要修复由于 vec 导致的未定义行为。 vector 被删除。这是第一个问题。

我看到您的代码正在使用 WIFSTOPPED 检查进程的退出状态.

让我们review the documentation for the wait(2) system call ,看看它是怎么说的:

  WIFSTOPPED(wstatus)
returns true if the child process was stopped by delivery of a
signal; this is possible only if the call was done using WUN‐
TRACED or when the child is being traced (see ptrace(2)).

因此,根据手头的信息,在修复前面提到的未定义行为并更改您的 waitpid() 之后调用:

waitpid(pid,&status,WUNTRACED);

然后我可以发送 kill -TSTP <pid>给生成的消息 cat处理,得到预期的

process stopped

来自您的测试程序的消息。

附言通过跟踪子进程,我可以看到子进程正在接收 TSTP。信号,然后停止就好了。问题很简单, parent 没有处理它,没有 waitpid() 的必需选项。 .

关于c++ - SIGTSTP 信号不阻止 child ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41029170/

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