summaryrefslogtreecommitdiff
path: root/lib/util
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2018-04-10 16:06:12 +1200
committerJeremy Allison <jra@samba.org>2018-04-11 01:06:39 +0200
commit3acc00b6808d5d5ad035d9d43526204db1608c8a (patch)
treee1d480fe9616c228ce47d076e4153b9f0242aabc /lib/util
parent85dc9ee14023a8fb84b5c74555d43008bb6bb0c0 (diff)
downloadsamba-3acc00b6808d5d5ad035d9d43526204db1608c8a.tar.gz
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 <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/util')
-rw-r--r--lib/util/fault.c4
1 files changed, 3 insertions, 1 deletions
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);