home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / thr_alarm.h < prev    next >
C/C++ Source or Header  |  2000-08-31  |  3KB  |  101 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. /* Prototypes when using thr_alarm library functions */
  19.  
  20. #ifndef _thr_alarm_h
  21. #define _thr_alarm_h
  22. #ifdef    __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26. typedef struct st_alarm {
  27.   ulong expire_time;
  28.   int alarmed;                    /* 1 when alarm is due */
  29.   pthread_t thread;
  30.   my_bool malloced;
  31. } ALARM;
  32.  
  33. #ifndef USE_ALARM_THREAD
  34. #define USE_ONE_SIGNAL_HAND        /* One must call process_alarm */
  35. #endif
  36. #ifdef HAVE_LINUXTHREADS
  37. #define THR_CLIENT_ALARM SIGALRM
  38. #else
  39. #define THR_CLIENT_ALARM SIGUSR1
  40. #endif
  41. #ifdef HAVE_rts_threads
  42. #undef USE_ONE_SIGNAL_HAND
  43. #define USE_ALARM_THREAD
  44. #define THR_SERVER_ALARM SIGUSR1
  45. #else
  46. #define THR_SERVER_ALARM SIGALRM
  47. #endif
  48.  
  49. #ifdef DONT_USE_THR_ALARM
  50.  
  51. #define USE_ALARM_THREAD
  52. #undef USE_ONE_SIGNAL_HAND
  53.  
  54. typedef struct st_win_timer
  55. {
  56.   uint crono;
  57. } thr_alarm_t;
  58.  
  59. #define thr_alarm_init(A)   (A)->crono=0
  60. #define thr_alarm_in_use(A) (A).crono
  61. #define init_thr_alarm(A)
  62. #define thr_alarm_kill(A)
  63. #define end_thr_alarm()
  64. #define thr_alarm(A,B) (((A)->crono=1)-1)
  65. #define thr_got_alarm(A) (A).crono
  66. #define thr_end_alarm(A)
  67.  
  68. #else
  69.  
  70. #ifdef __WIN__
  71. typedef struct st_win_timer
  72. {
  73.   rf_SetTimer crono;
  74. } thr_alarm_t;
  75.  
  76. bool thr_got_alarm(thr_alarm_t *alrm);
  77. #define thr_alarm_init(A)   (A)->crono=0
  78. #define thr_alarm_in_use(A) (A)->crono
  79. #define init_thr_alarm(A)
  80. #define thr_alarm_kill(A)
  81. #else
  82.  
  83. typedef int* thr_alarm_t;
  84. #define thr_got_alarm(thr_alarm) (*thr_alarm)
  85. #define thr_alarm_init(A) (*A)=0
  86. #define thr_alarm_in_use(A) ((A) != 0)
  87. void init_thr_alarm(uint max_alarm);
  88. void thr_alarm_kill(pthread_t thread_id);
  89. sig_handler process_alarm(int);
  90. #endif /* __WIN__ */
  91.  
  92. bool thr_alarm(thr_alarm_t *alarmed,uint sec, ALARM *buff);
  93. void thr_end_alarm(thr_alarm_t *alarmed);
  94. void end_thr_alarm(void);
  95. #endif /* DONT_USE_THR_ALARM */
  96.  
  97. #ifdef    __cplusplus
  98. }
  99. #endif
  100. #endif
  101.