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

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. /* Prototypes when using thr_alarm library functions */
  14. #ifndef _thr_alarm_h
  15. #define _thr_alarm_h
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #ifndef USE_ALARM_THREAD
  20. #define USE_ONE_SIGNAL_HAND /* One must call process_alarm */
  21. #endif
  22. #ifdef HAVE_LINUXTHREADS
  23. #define THR_CLIENT_ALARM SIGALRM
  24. #else
  25. #define THR_CLIENT_ALARM SIGUSR1
  26. #endif
  27. #ifdef HAVE_rts_threads
  28. #undef USE_ONE_SIGNAL_HAND
  29. #define USE_ALARM_THREAD
  30. #define THR_SERVER_ALARM SIGUSR1
  31. #else
  32. #define THR_SERVER_ALARM SIGALRM
  33. #endif
  34. typedef struct st_alarm_info
  35. {
  36.   ulong next_alarm_time;
  37.   uint active_alarms;
  38.   uint max_used_alarms;
  39. } ALARM_INFO;
  40. void thr_alarm_info(ALARM_INFO *info);
  41. #if defined(DONT_USE_THR_ALARM) || !defined(THREAD)
  42. #define USE_ALARM_THREAD
  43. #undef USE_ONE_SIGNAL_HAND
  44. typedef my_bool thr_alarm_t;
  45. typedef my_bool ALARM;
  46. #define thr_alarm_init(A) (*(A))=0
  47. #define thr_alarm_in_use(A) (*(A) != 0)
  48. #define thr_end_alarm(A)
  49. #define thr_alarm(A,B,C) ((*(A)=1)-1)
  50. /* The following should maybe be (*(A)) */
  51. #define thr_got_alarm(A) 0
  52. #define init_thr_alarm(A)
  53. #define thr_alarm_kill(A)
  54. #define resize_thr_alarm(N)
  55. #define end_thr_alarm(A)
  56. #else
  57. #if defined(__WIN__)
  58. typedef struct st_thr_alarm_entry
  59. {
  60.   rf_SetTimer crono;
  61. } thr_alarm_entry;
  62. #elif defined(__EMX__) || defined(OS2)
  63. typedef struct st_thr_alarm_entry
  64. {
  65.   uint crono;
  66.   uint event;
  67. } thr_alarm_entry;
  68. #else /* System with posix threads */
  69. typedef int thr_alarm_entry;
  70. #define thr_got_alarm(thr_alarm) (**(thr_alarm))
  71. #endif /* __WIN__ */
  72. typedef thr_alarm_entry* thr_alarm_t;
  73. typedef struct st_alarm {
  74.   ulong expire_time;
  75.   thr_alarm_entry alarmed; /* set when alarm is due */
  76.   pthread_t thread;
  77.   my_bool malloced;
  78. } ALARM;
  79. #define thr_alarm_init(A) (*(A))=0
  80. #define thr_alarm_in_use(A) (*(A)!= 0)
  81. void init_thr_alarm(uint max_alarm);
  82. void resize_thr_alarm(uint max_alarms);
  83. my_bool thr_alarm(thr_alarm_t *alarmed, uint sec, ALARM *buff);
  84. void thr_alarm_kill(pthread_t thread_id);
  85. void thr_end_alarm(thr_alarm_t *alarmed);
  86. void end_thr_alarm(my_bool free_structures);
  87. sig_handler process_alarm(int);
  88. #ifndef thr_got_alarm
  89. bool thr_got_alarm(thr_alarm_t *alrm);
  90. #endif
  91. #endif /* DONT_USE_THR_ALARM */
  92. #ifdef __cplusplus
  93. }
  94. #endif /* __cplusplus */
  95. #endif /* _thr_alarm_h */