summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-11-28 22:47:58 +0200
committermonty@hundin.mysql.fi <>2001-11-28 22:47:58 +0200
commit7c3f8447c0972fce278ad92302f28af8ce2dee84 (patch)
tree26618c7253118930cf17acdcc699e83953795d9b /tools
parent76ed6c26fcd3f85c720d4aa4b77d39accb409be9 (diff)
downloadmariadb-git-7c3f8447c0972fce278ad92302f28af8ce2dee84.tar.gz
Extended manual section about MySQL states
Diffstat (limited to 'tools')
-rw-r--r--tools/mysqlmanager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c
index 31df66d10c6..c2011696776 100644
--- a/tools/mysqlmanager.c
+++ b/tools/mysqlmanager.c
@@ -342,17 +342,17 @@ static void handle_sigterm(int sig __attribute__((unused)))
exit(0);
}
+#ifdef DO_STACKTRACE
static void handle_segfault(int sig)
{
if (in_segfault)
exit(1);
in_segfault=1;
fprintf(errfp,"Got fatal signal %d\n",sig);
-#ifdef DO_STACKTRACE
print_stacktrace();
-#endif
exit(1);
}
+#endif
static void handle_sigpipe(int __attribute__((unused)) sig)
{