my_alarm.h
上传用户: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. /*
  18.   File to include when we want to use alarm or a loop_counter to display
  19.   some information when a program is running
  20. */
  21. #ifndef _my_alarm_h
  22. #define _my_alarm_h
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. extern int volatile my_have_got_alarm;
  27. extern ulong my_time_to_wait_for_lock;
  28. #if defined(HAVE_ALARM) && !defined(NO_ALARM_LOOP)
  29. #include <signal.h>
  30. #define ALARM_VARIABLES uint alarm_old=0; 
  31. sig_return alarm_signal=0
  32. #define ALARM_INIT my_have_got_alarm=0 ; 
  33. alarm_old=(uint) alarm(MY_HOW_OFTEN_TO_ALARM); 
  34. alarm_signal=signal(SIGALRM,my_set_alarm_variable);
  35. #define ALARM_END VOID(signal(SIGALRM,alarm_signal)); 
  36. VOID(alarm(alarm_old));
  37. #define ALARM_TEST my_have_got_alarm
  38. #ifdef DONT_REMEMBER_SIGNAL
  39. #define ALARM_REINIT VOID(alarm(MY_HOW_OFTEN_TO_ALARM)); 
  40. VOID(signal(SIGALRM,my_set_alarm_variable));
  41. my_have_got_alarm=0;
  42. #else
  43. #define ALARM_REINIT VOID(alarm((uint) MY_HOW_OFTEN_TO_ALARM)); 
  44. my_have_got_alarm=0;
  45. #endif /* DONT_REMEMBER_SIGNAL */
  46. #else
  47. #define ALARM_VARIABLES long alarm_pos=0,alarm_end_pos=MY_HOW_OFTEN_TO_WRITE-1
  48. #define ALARM_INIT
  49. #define ALARM_END
  50. #define ALARM_TEST (alarm_pos++ >= alarm_end_pos)
  51. #define ALARM_REINIT alarm_end_pos+=MY_HOW_OFTEN_TO_WRITE
  52. #endif /* HAVE_ALARM */
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. #endif