使用睡眠功能时如何增加计数? (用C语言编写)

时间:2012-04-26 08:10:10

标签: c signals sleep

嘿,伙计们,我好像迷路了。我应该能够在无限循环内递增子中的计数,并且每次父发送信号时都要打印计数,该信号应该是每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;

}

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

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