summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--WHATSNEW.txt4
-rw-r--r--source3/lib/fault.c9
2 files changed, 9 insertions, 4 deletions
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index fc508446a9..02b315c609 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -52,7 +52,9 @@ o Jim McDonough <jmcd@samba.org>
o Stefan Metzmacher <metze@samba.org>
-
+ * Add SIGABRT to fault handling
+ so we now got a backtrace, if we crash
+ in libldap with SIGABRT
o Tim Potter <tpot@samba.org>
diff --git a/source3/lib/fault.c b/source3/lib/fault.c
index df7830ef83..d8364ff225 100644
--- a/source3/lib/fault.c
+++ b/source3/lib/fault.c
@@ -48,6 +48,9 @@ static void fault_report(int sig)
#ifdef SIGBUS
CatchSignal(SIGBUS,SIGNAL_CAST SIG_DFL);
#endif
+#ifdef SIGABRT
+ CatchSignal(SIGABRT,SIGNAL_CAST SIG_DFL);
+#endif
return; /* this should cause a core dump */
}
exit(1);
@@ -74,7 +77,7 @@ void fault_setup(void (*fn)(void *))
#ifdef SIGBUS
CatchSignal(SIGBUS,SIGNAL_CAST sig_fault);
#endif
+#ifdef SIGABRT
+ CatchSignal(SIGABRT,SIGNAL_CAST sig_fault);
+#endif
}
-
-
-