mf_brkhant.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

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