gpt4 book ai didi

C使用信号同步进程

转载 作者:太空狗 更新时间:2023-10-29 11:32:12 24 4
gpt4 key购买 nike

好吧,我正在尝试自学如何发出信号,但我遇到了一个小问题,我不知道自己做错了什么。现在正在发生的事情是:它正在执行父级,然后转到子级,然后返回父级。它没有做我想让它做的事情,即执行父级(用户定义它运行的时间量)然后杀死它然后转到 child 并在相同的时间内运行自己。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h> // for wait
#include <sys/wait.h> // for wait

void action(int);
void action(int dummy){
sleep(1);
printf("Switching\n");
}

int main(int argc, char *argv[]){
pid_t pid;
int m = atoi(argv[1]), i = 0, x = 0;
if((pid=fork())>0){//parent
sleep(1);
while(i < m){
printf("hello %d\n", x);
x++;
kill(pid, SIGUSR1);
signal(SIGUSR1, action);
pause();
i++;
}
}

else
while(i < m){//child
//waitpid(getppid(), &status, 0); // wait for parent
signal(SIGUSR1, action);
pause();
printf("hi%d\n", x);
x++;
kill(getppid(), SIGUSR1);
i++;
}
}

我想要它做的是:

hello 0
hello 1
hello 2
hello 3
hello 4
Switching
hi 0
hi 1
hi 2
hi 3
hi 4

非常感谢任何帮助!

最佳答案

您已经得到了大部分的作品,只需要稍微重新排序一下。

  • 在使用kill之前在两个进程中安装信号处理程序
  • parent 应该在给 child 发信号之前完成打印
  • child 可以在完成打印后发出信号

void action(int dummy)
{
sleep(1);
printf("Switching\n");
}

int main(int argc, char *argv[])
{
int m = 3;
if (argc == 2)
m = atoi(argv[1]);

pid_t pid = fork(); // create the child process
signal(SIGUSR1, action); // set up the signal handler for both parent and child

if ( pid > 0 ) // the parent
{
for ( int i = 0; i < m; i++ )
{
sleep(1);
printf("hello %d\n", i);
}
kill( pid, SIGUSR1 ); // signal the child
pause(); // wait for the child to signal back
printf("All done\n");
}
else // the child
{
pause(); // wait for the signal from the parent
for ( int i = 0; i < m; i++ )
{
sleep(1);
printf("hi %d\n", i);
}
kill(getppid(), SIGUSR1); // signal the parent
}
}

关于C使用信号同步进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28867909/

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