当发现奇怪的行为时,我试图学习 C 中的信号处理。
当 x /= y 时;在信号处理程序工作的主函数的上下文中执行。但是,当在某些函数(bad_func)处理程序中执行的相同操作被忽略时,SIGFPE 的信号处理程序已经设置。
问:为什么即使调用了 _control87,SIGFPE 也没有被我的全局信号处理程序捕获到函数中?
(MS VC 2010):
#include "stdafx.h"
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <setjmp.h>
#include <float.h>
jmp_buf g_jb_MainFunc;
void hook_zd (int i)
{
printf("Result :%i\n",i);
longjmp(g_jb_MainFunc, 5);
}
void bad_func(void)
{
double x = 0., y = 0.;
puts("hello1");
//abort();
x /= y;
puts("bye1");
}
int main(int argc, char* argv[])
{
double x = 0., y = 0.;
signal(SIGFPE, hook_zd);
signal(SIGABRT, hook_zd);
puts("hello");
_control87(0, _MCW_EM );
int res;
if (! (res = setjmp(g_jb_MainFunc)))
{
//abort();
//x /= y;
bad_func();
} else
{
printf("Jumped here from: %i\n",res);
}
puts("bye");
return 0;
}