0

嘿伙计们,我似乎迷路了。我应该能够在一个无限循环内增加一个孩子的计数,并在每次父母发送信号时打印计数,这应该是每 1 秒。我写了我的代码,但我认为使用 fork 后,子进程和父进程同时运行,但事实并非如此,所以我不确定如何解决这个问题。任何帮助都会很棒

#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;

}

4

2 回答 2

0

raise将信号发送给您自己(即父母)而不是孩子。使用kill(child_pid, SIGALRM).

于 2012-04-26T08:14:34.600 回答
0

使用 fork 后,两个进程的变量位于不同的内存位置。所以当你在父进程中发出信号时,打印出来的是父进程的“count”变量。您可以在子进程的循环中打印“计数”以查看它的增加

于 2012-04-26T08:15:37.730 回答