removed -lresolv for --enable-ldapsam is present; should be included by -lsasl (neede...
[Samba.git] / source / lib / fault.c
blob8d08fccd24c83f0ee55e64d4f7d474a14ecc2ce6
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 Critical Fault handling
5 Copyright (C) Andrew Tridgell 1992-1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 static void (*cont_fn)(void *);
27 /*******************************************************************
28 report a fault
29 ********************************************************************/
30 static void fault_report(int sig)
32 static int counter;
34 if (counter) _exit(1);
36 counter++;
38 DEBUG(0,("===============================================================\n"));
39 DEBUG(0,("INTERNAL ERROR: Signal %d in pid %d (%s)",sig,(int)sys_getpid(),VERSION));
40 DEBUG(0,("\nPlease read the file BUGS.txt in the distribution\n"));
41 DEBUG(0,("===============================================================\n"));
43 smb_panic("internal error");
45 if (cont_fn) {
46 cont_fn(NULL);
47 #ifdef SIGSEGV
48 CatchSignal(SIGSEGV,SIGNAL_CAST SIG_DFL);
49 #endif
50 #ifdef SIGBUS
51 CatchSignal(SIGBUS,SIGNAL_CAST SIG_DFL);
52 #endif
53 return; /* this should cause a core dump */
55 exit(1);
58 /****************************************************************************
59 catch serious errors
60 ****************************************************************************/
61 static void sig_fault(int sig)
63 fault_report(sig);
66 /*******************************************************************
67 setup our fault handlers
68 ********************************************************************/
69 void fault_setup(void (*fn)(void *))
71 cont_fn = fn;
73 #ifdef SIGSEGV
74 CatchSignal(SIGSEGV,SIGNAL_CAST sig_fault);
75 #endif
76 #ifdef SIGBUS
77 CatchSignal(SIGBUS,SIGNAL_CAST sig_fault);
78 #endif