mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Fixes a compilation problem on Windows. Backport of the
same fix from 4.0.
This commit is contained in:
parent
0e9a64684d
commit
ab8d50b7df
1 changed files with 4 additions and 0 deletions
|
@ -2251,7 +2251,11 @@ int main(int argc, char **argv)
|
|||
#endif
|
||||
|
||||
/* Set signal used to kill MySQL */
|
||||
#if defined(SIGUSR2)
|
||||
thr_kill_signal= thd_lib_detected == THD_LIB_LT ? SIGINT : SIGUSR2;
|
||||
#else
|
||||
thr_kill_signal= SIGINT;
|
||||
#endif
|
||||
|
||||
/*
|
||||
Init mutexes for the global MYSQL_LOG objects.
|
||||
|
|
Loading…
Reference in a new issue