#include <stdio.h>
#include <unistd.h>
#include <signal.h>
int count = 0;//global count variable
void catch(int signal){
printf("Ouch! - I got signal %d \n", signal);
printf("count is %d\n", count);
count = 0;
}
int main(){
int pid;
int sec=0;
pid = fork();
int count1 = 0;
(void) signal(SIGALRM, catch);
if(pid==-1){
printf("error\n");
}
else if(pid==0){//if child
while(1){//while loop to increment count while parent to sleeping
count = count + 1;
}
//pause();
}
else{//parent
sleep(1);//1 second pause
raise(SIGALRM);//send alarm
count1 = count1 + 1;
if(count1>=5){
return 0;
}
exit(0);
}
return 0;
}
答案 0 :(得分:0)
raise
将信号发送给您自己(即父母),而不是给孩子。使用kill(child_pid, SIGALRM)
。
答案 1 :(得分:0)
使用fork后,两个进程的变量位于不同的内存位置。因此,当您在父进程中引发信号时,打印出来的是父进程的“count”变量。您可以在子进程循环内打印“count”以查看它的增加