mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Revert SIGINT patch as Monty requested
This commit is contained in:
@ -706,10 +706,10 @@ pthread_handler_decl(handle_bootstrap,arg)
|
|||||||
thd->dbug_thread_id=my_thread_id();
|
thd->dbug_thread_id=my_thread_id();
|
||||||
#if !defined(__WIN__) && !defined(OS2)
|
#if !defined(__WIN__) && !defined(OS2)
|
||||||
sigset_t set;
|
sigset_t set;
|
||||||
VOID(sigemptyset(&set));
|
VOID(sigemptyset(&set)); // Get mask in use
|
||||||
VOID(sigaddset(&set,SIGINT));
|
VOID(pthread_sigmask(SIG_UNBLOCK,&set,&thd->block_signals));
|
||||||
// Get mask in use and block SIGINT
|
|
||||||
VOID(pthread_sigmask(SIG_BLOCK,&set,&thd->block_signals));
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if ((ulong) thd->variables.max_join_size == (ulong) HA_POS_ERROR)
|
if ((ulong) thd->variables.max_join_size == (ulong) HA_POS_ERROR)
|
||||||
|
Reference in New Issue
Block a user