我有一个奇怪的行为,manpage和谷歌没有提供帮助。
在我的代码中,我想在发送SIGUSR2时阻止/取消阻止SIGINT。为此,我安装了信号处理程序,并准备了一个函数中的掩码集:
void installSignallHandler(){
sBlock.sa_handler = handleBlock;
sigemptyset(&sBlock.sa_mask);
sigaddset(&sBlock.sa_mask, SIGUSR2);
sBlock.sa_flags = 0;
sigaction(SIGUSR2, &sBlock, NULL);
sigemptyset(&signals_protected);
sigaddset(&signals_protected, SIGINT);
// For some reason sigprocmask only works if it is called here the first time
// sigprocmask(SIG_BLOCK, &signals_protected, NULL);
// sigintBlocked = true;
}
然后,如果发送SIGUSR2,则调用此函数:
void handleBlock(int signal){
if(sigintBlocked){
printf("Unblocking SIGINT ...n");
sigprocmask(SIG_UNBLOCK, &signals_protected, NULL);
sigintBlocked = false;
}
else{
printf("Blocking SIGINT ...n");
sigprocmask(SIG_BLOCK, &signals_protected, NULL);
sigintBlocked = true;
}
}
为了测试,我这样称呼它:
int main(int argc, char **argv) {
installSignallHandler();
while(1){
printf("processing...n");
sleep(1);
}
return EXIT_SUCCESS;
}
现在的问题是:我发布代码的方式,sigprocmask没有任何效果。但如果我取消对上面两行的注释,它会起作用。所以我的两个问题:
- 你能解释一下这种行为吗
- 我能做些什么来解决它?-我不想从信号阻塞开始
因为这是竞赛条件。在sig_handler中设置sigintBlocked,然后在主函数中进行验证。如果设置了,则屏蔽信号。
此链接包含详细信息信号期间的sigprocmask';s执行