Revert SIGINT patch as Monty requested

sql/sql_parse.cc:
  Revert patch
This commit is contained in:
unknown 2002-08-04 17:14:51 +04:00
parent 6c957a21e0
commit 1ac8636dc0

View File

@ -706,10 +706,10 @@ pthread_handler_decl(handle_bootstrap,arg)
thd->dbug_thread_id=my_thread_id();
#if !defined(__WIN__) && !defined(OS2)
sigset_t set;
VOID(sigemptyset(&set));
VOID(sigaddset(&set,SIGINT));
// Get mask in use and block SIGINT
VOID(pthread_sigmask(SIG_BLOCK,&set,&thd->block_signals));
VOID(sigemptyset(&set)); // Get mask in use
VOID(pthread_sigmask(SIG_UNBLOCK,&set,&thd->block_signals));
#endif
if ((ulong) thd->variables.max_join_size == (ulong) HA_POS_ERROR)