我是Linux信号的新手,请帮忙。以下代码在 Linux 2.6 gcc 中运行时获取核心转储。
$ ./a.out
浮点异常(核心转储)
问题:
1. 既然安装了进程信号掩码,那么第40行生成的“SIGFGE”不应该volatile int z = x/y;
被屏蔽吗?
2.如果它没有被阻塞,既然已经安装了信号处理程序,那么信号处理程序不应该捕获“SIGFPE”,而不是核心转储吗?
3. 如果我注释掉第 40 行volatile int z = x/y;
,而改用第 42 行raise(SIGFPE);
,那么一切都按我的预期进行。x/0 和 raise SIGFPE 有什么区别?
这是代码:
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
void sig_handler(int signum)
{
printf("sig_handler() received signal %d\n", signum);
}
int main(int argc, char * argv[])
{
// setup signal mask, block all signals
sigset_t set;
sigfillset(&set);
if(sigprocmask(SIG_BLOCK, &set, NULL)<0)
{
perror("failed to set sigmask");
return -1;
}
// install signal handler for SIGFPE
struct sigaction act;
act.sa_handler = sig_handler;
act.sa_mask = set;
act.sa_flags = 0;
if(sigaction( SIGFPE, &act, NULL)<0)
{
perror("sigaction failed");
exit(-1);
}
volatile int x =1;
volatile int y =0;
volatile int z = x/y; //line 40
//raise(SIGFPE); //line 42
printf("point 1000\n");
return 0;
}