gpt4 book ai didi

c - C 中的信号处理程序显示困惑

转载 作者:行者123 更新时间:2023-11-30 15:13:50 24 4
gpt4 key购买 nike

我正在尝试使用信号来同步 N 个进程,然后打印出一些内容。每个子进程注册一个处理程序,在捕获 SIGUSR1 时打印“yo”和“hihi”。我使用kill(0, SIGUSR1) 来触发每个进程。由于捕获 SIGUSR1 的默认操作将被终止,因此我为主进程设置了一个不执行任何操作的处理程序,以便它将等待所有子进程死亡。

fork 和发送信号程序将重复k次,我预计它会显示N*k次“yo”和“hihi”。然而,它没有像我预期的那样显示足够的“yo”和“hihi”。每次执行的“yo”数量都不同。

这是我的代码,感谢您的帮助!

    #include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <time.h>
#include <signal.h>
#include <sys/time.h>
#include <string.h>
#define N 3
int pid_id[N];

void handler2 (int signum)
{
printf("hihi\n");
}

void handler (int signum)
{
signal(SIGUSR2, handler2);
printf("yo\n");
raise(SIGUSR2);
}

void handler_do_nothing (int signum)
{
;
}

void child(int process_index)
{
struct sigaction sa;

/* Register */
memset(&sa, 0, sizeof(sa));
sa.sa_handler = handler;
sigaction(SIGUSR1, &sa, NULL);

printf("I am %d.\n", getpid());
pid_id[process_index] = getpid();
sleep(1);

exit(0);
}

int main()
{
int i, k, status;
pid_t pid[N];
pid_t pid_wait;

struct sigaction sa_main;

/* Register */ /* Main process will terminate if catch SIGUSR1 by default setting*/
memset(&sa_main, 0, sizeof(sa_main));
sa_main.sa_handler = handler_do_nothing;
sigaction(SIGUSR1, &sa_main, NULL);

/* Race k times */
for (k=0;k<3;k++)
{

for (i=0;i<N;i++)
{
pid[i] = fork();
if (pid[i]==0)
{
child(i);
}
}

// sleep();
kill(0, SIGUSR1);

for (i=0;i<N;i++)
{
do
{
pid_wait = waitpid(pid[i], &status, WNOHANG);
printf("I am waiting..\n");
sleep(1);
}while(pid_wait != pid[i]);
}
}
printf("all done\n");

return 0;
}

最佳答案

您的子进程在有时间(即计划执行资源)安装新的信号处理程序之前就收到了信号。

这意味着当主程序发送 SIGUSR1 时,子进程的某些子集仍将安装 handler_do_nothing

如果您想等到子进程全部完成设置,您将需要添加一些进程间通信机制 - 例如子进程准备好后可以向父进程发出信号。

关于c - C 中的信号处理程序显示困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34311465/

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