mf_brkhant.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Dont let the user break when you are doing something important */
  14. /* Remembers if it got 'SIGINT' and executes it on allow_break */
  15. /* A static buffer is used; don't call dont_break() twice in a row */
  16. #include "mysys_priv.h"
  17. #include "my_static.h"
  18. /* Set variable that we can't break */
  19. #if !defined(THREAD)
  20. void dont_break(void)
  21. {
  22.   my_dont_interrupt=1;
  23.   return;
  24. } /* dont_break */
  25. void allow_break(void)
  26. {
  27.   {
  28.     reg1 int index;
  29.     my_dont_interrupt=0;
  30.     if (_my_signals)
  31.     {
  32.       if (_my_signals > MAX_SIGNALS)
  33. _my_signals=MAX_SIGNALS;
  34.       for (index=0 ; index < _my_signals ; index++)
  35.       {
  36. if (_my_sig_remember[index].func) /* Safequard */
  37. {
  38.   (*_my_sig_remember[index].func)(_my_sig_remember[index].number);
  39.   _my_sig_remember[index].func=0;
  40. }
  41.       }
  42.       _my_signals=0;
  43.     }
  44.   }
  45. } /* dont_break */
  46. #endif
  47. /* Set old status */
  48. #if !defined(THREAD)
  49. void my_remember_signal(int signal_number, sig_handler (*func) (int))
  50. {
  51. #ifndef __WIN__
  52.   reg1 int index;
  53.   index=_my_signals++; /* Nobody can break a ++ ? */
  54.   if (index < MAX_SIGNALS)
  55.   {
  56.     _my_sig_remember[index].number=signal_number;
  57.     _my_sig_remember[index].func=func;
  58.   }
  59. #endif /* __WIN__ */
  60. } /* my_remember_signal */
  61. #endif /* THREAD */