Commit 08ff39dc authored by Monty's avatar Monty

Write location of core when doing core dump

parent 322c637c
...@@ -298,7 +298,9 @@ extern "C" sig_handler handle_fatal_signal(int sig) ...@@ -298,7 +298,9 @@ extern "C" sig_handler handle_fatal_signal(int sig)
#ifdef HAVE_WRITE_CORE #ifdef HAVE_WRITE_CORE
if (test_flags & TEST_CORE_ON_SIGNAL) if (test_flags & TEST_CORE_ON_SIGNAL)
{ {
my_safe_printf_stderr("%s", "Writing a core file\n"); char buff[80];
my_getwd(buff, sizeof(buff), 0);
my_safe_printf_stderr("Writing a core file at %s\n", buff);
fflush(stderr); fflush(stderr);
my_write_core(sig); my_write_core(sig);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment