home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / mf_brkhant.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  77 lines

  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.  
  18. /* Dont let the user break when you are doing something important */
  19. /* Remembers if it got 'SIGINT' and executes it on allow_break */
  20. /* A static buffer is used; don't call dont_break() twice in a row */
  21.  
  22. #include "mysys_priv.h"
  23. #include "my_static.h"
  24.  
  25.     /* Set variable that we can't break */
  26.  
  27. void dont_break(void)
  28. {
  29. #if !defined(THREAD)
  30.   my_dont_interrupt=1;
  31. #endif
  32.   return;
  33. } /* dont_break */
  34.  
  35. void allow_break(void)
  36. {
  37. #if !defined(THREAD)
  38.   {
  39.     reg1 int index;
  40.  
  41.     my_dont_interrupt=0;
  42.     if (_my_signals)
  43.     {
  44.       if (_my_signals > MAX_SIGNALS)
  45.     _my_signals=MAX_SIGNALS;
  46.       for (index=0 ; index < _my_signals ; index++)
  47.       {
  48.     if (_my_sig_remember[index].func)            /* Safequard */
  49.     {
  50.       (*_my_sig_remember[index].func)(_my_sig_remember[index].number);
  51.       _my_sig_remember[index].func=0;
  52.     }
  53.       }
  54.       _my_signals=0;
  55.     }
  56.   }
  57. #endif
  58. } /* dont_break */
  59.  
  60.     /* Set old status */
  61.  
  62. #if !defined(THREAD)
  63. void my_remember_signal(int signal_number, sig_handler (*func) (int))
  64. {
  65. #ifndef __WIN__
  66.   reg1 int index;
  67.  
  68.   index=_my_signals++;            /* Nobody can break a ++ ? */
  69.   if (index < MAX_SIGNALS)
  70.   {
  71.     _my_sig_remember[index].number=signal_number;
  72.     _my_sig_remember[index].func=func;
  73.   }
  74. #endif /* __WIN__ */
  75. } /* my_remember_signal */
  76. #endif /* THREAD */
  77.