1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

r8685: an alpha in the build farm is dying with a floating point

exception. Catch these in out fault handler, so we get a backtrace
This commit is contained in:
Andrew Tridgell 2005-07-21 14:04:13 +00:00 committed by Gerald (Jerry) Carter
parent c2f5884e2f
commit 802724cf69

View File

@ -187,6 +187,9 @@ void fault_setup(const char *pname)
#ifdef SIGABRT
CatchSignal(SIGABRT,SIGNAL_CAST sig_fault);
#endif
#ifdef SIGFPE
CatchSignal(SIGFPE,SIGNAL_CAST sig_fault);
#endif
}
/*