From 67d037c58f93845640cfff792686d4797cb86a7c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 10 Apr 2018 16:06:12 +1200 Subject: [PATCH] lib/util: Log PANIC before calling pacic action just like s3 This is like the changes made in s3 by 4fa555980070d78b39711ef21d77628d26055bc2 Signed-off-by: Andrew Bartlett Reviewed-by: Jeremy Allison BUG: https://bugzilla.samba.org/show_bug.cgi?id=13454 (cherry picked from commit 3acc00b6808d5d5ad035d9d43526204db1608c8a) --- lib/util/fault.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/util/fault.c b/lib/util/fault.c index 54d84711742..fef82a3fcf7 100644 --- a/lib/util/fault.c +++ b/lib/util/fault.c @@ -123,6 +123,9 @@ _PUBLIC_ const char *panic_action = NULL; static void smb_panic_default(const char *why) _NORETURN_; static void smb_panic_default(const char *why) { + DBG_ERR("PANIC (pid %llu): %s\n", + (unsigned long long)getpid(), why); + #if defined(HAVE_PRCTL) && defined(PR_SET_PTRACER) /* * Make sure all children can attach a debugger. @@ -148,7 +151,6 @@ static void smb_panic_default(const char *why) WEXITSTATUS(result))); } } - DEBUG(0,("PANIC: %s\n", why)); #ifdef SIGABRT CatchSignal(SIGABRT, SIG_DFL); -- 2.47.2