gpt4 book ai didi

c - 使用 sleep 函数时如何增加计数? (C语言)

转载 作者:行者123 更新时间:2023-11-30 18:00:37 25 4
gpt4 key购买 nike

嘿伙计们,我似乎迷路了。我应该能够在无限循环内增加子级中的计数,并在每次父级发送信号时打印计数(应该每 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;

}

最佳答案

raise 将信号发送给您自己(即 parent )而不是 child 。使用kill(child_pid, SIGALRM)

关于c - 使用 sleep 函数时如何增加计数? (C语言),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10329498/

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