1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Extended manual section about MySQL states

This commit is contained in:
monty@hundin.mysql.fi
2001-11-28 22:47:58 +02:00
parent 76ed6c26fc
commit 7c3f8447c0
4 changed files with 115 additions and 45 deletions

View File

@ -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)
{