svn commit: samba r8685 - in branches/SAMBA_4_0/source/lib: .

tridge at samba.org tridge at samba.org
Thu Jul 21 14:04:13 GMT 2005


Author: tridge
Date: 2005-07-21 14:04:13 +0000 (Thu, 21 Jul 2005)
New Revision: 8685

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8685

Log:
an alpha in the build farm is dying with a floating point
exception. Catch these in out fault handler, so we get a backtrace

Modified:
   branches/SAMBA_4_0/source/lib/fault.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/fault.c
===================================================================
--- branches/SAMBA_4_0/source/lib/fault.c	2005-07-21 14:00:51 UTC (rev 8684)
+++ branches/SAMBA_4_0/source/lib/fault.c	2005-07-21 14:04:13 UTC (rev 8685)
@@ -187,6 +187,9 @@
 #ifdef SIGABRT
 	CatchSignal(SIGABRT,SIGNAL_CAST sig_fault);
 #endif
+#ifdef SIGFPE
+	CatchSignal(SIGFPE,SIGNAL_CAST sig_fault);
+#endif
 }
 
 /*



More information about the samba-cvs mailing list