我不明白这里发生了什么,我有一个父进程处理SIGINT信号,然后产生一个子进程。我按^ C时期望的是,两个进程都将打印“ SIGINT receive”,然后继续执行,但是事实证明父进程在收到SIGINT后就死了,但子进程仍然在那里。我不明白。
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <sys/signal.h>
#include <string.h>
void handler (int sig) {
printf("SIGINT received\n");
}
void child() {
while (1) {
printf("I'm the child\n");
sleep(1);
}
exit(0);
}
int main(int argc, char *argv[]) {
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_handler = &handler;
// Link SIGINT with the handler
sigaction(SIGINT, &act, NULL);
// Create child
if (fork() == 0) child();
wait(NULL);
return 0;
}
执行示例:
$ ./test_signals
I'm the child
^CSIGINT received
I'm the child
SIGINT received
$ I'm the child
I'm the child
因此,两个进程都处理SIGINT,但是父进程在子进程继续运行时就死了...
答案 0 :(得分:3)
父进程在main函数中被阻塞,并且在接收到信号后对其进行处理,并从调用返回到wait
并返回错误。
孩子刚刚在while
中循环处理SIGINT。当处理后的代码返回到它所在的位置(可能在睡眠中被阻止)并继续循环时。
该代码可以说明发生的情况:
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <sys/signal.h>
#include <string.h>
#include <sys/errno.h>
void handler (int sig) {
printf("SIGINT received %d\n",getpid());
}
void child() {
while (1) {
printf("I'm the child\n");
sleep(1);
}
exit(0);
}
int main(int argc, char *argv[]) {
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_handler = &handler;
// Link SIGINT with the handler
sigaction(SIGINT, &act, NULL);
// Create child
if (fork() == 0) child();
int r = wait(NULL);
if (r==-1 && errno==EINTR) printf("signal probably received in parent\n");
return 0;
}
请注意,禁止在信号处理程序中调用printf
。