gpt4 book ai didi

linux - c - 无法在 Linux 中订阅新的信号处理程序

转载 作者:太空宇宙 更新时间:2023-11-04 03:44:02 26 4
gpt4 key购买 nike

我正在尝试在当前信号处理程序中订阅新的信号处理程序,但没有任何反应。 usr1b 的输出不会在终端中打印,usr1a 的输出会在终端中打印。

代码:

#include<signal.h>
#include<stdio.h>
#include<unistd.h>

static int counter = 0;

void usr1b(int sig1) {
printf("usr1b\n");
counter++;
printf("current count: %d", counter);
}

void usr1a(int sig) {
printf("usr1a\n");
if( signal(SIGUSR1, usr1b) == SIG_ERR) {
printf("ERROR\n"); // subscribe usr1b to SIGUSR1
}
}

int main(void) {
if(signal(SIGINT, SIG_IGN)==SIG_ERR)
printf("ERROR"); // ignore SIGINT

if(signal(SIGUSR1, usr1a)==SIG_ERR)
printf("ERROR"); // subscribe usr1a to SIGUSR1

printf("Send some signal to process %d\n", getpid());

while (1) {
sleep(1);
}
return 0;
}

最佳答案

试试这个...

static void usr1b(int signo) {
if (signo == SIGUSR1) {
cnt++;
printf("SIGUSR1 count: %d\n", cnt);
}
}

关于linux - c - 无法在 Linux 中订阅新的信号处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28828630/

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