From: Andrew Bartlett Date: Tue, 10 Apr 2018 04:06:12 +0000 (+1200) Subject: lib/util: Log PANIC before calling pacic action just like s3 X-Git-Tag: ldb-1.4.0~657 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3acc00b6808d5d5ad035d9d43526204db1608c8a;p=thirdparty%2Fsamba.git 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 --- 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);