thr_alarm.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /* Prototypes when using thr_alarm library functions */
  4. #ifndef _thr_alarm_h
  5. #define _thr_alarm_h
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #ifndef USE_ALARM_THREAD
  10. #define USE_ONE_SIGNAL_HAND /* One must call process_alarm */
  11. #endif
  12. #ifdef HAVE_LINUXTHREADS
  13. #define THR_CLIENT_ALARM SIGALRM
  14. #else
  15. #define THR_CLIENT_ALARM SIGUSR1
  16. #endif
  17. #ifdef HAVE_rts_threads
  18. #undef USE_ONE_SIGNAL_HAND
  19. #define USE_ALARM_THREAD
  20. #define THR_SERVER_ALARM SIGUSR1
  21. #else
  22. #define THR_SERVER_ALARM SIGALRM
  23. #endif
  24. #ifdef __WIN32__
  25. typedef struct st_win_timer
  26. {
  27.   uint crono;
  28. } thr_alarm_t;
  29. bool thr_got_alarm(thr_alarm_t *alrm);
  30. #define thr_alarm_init(A)   (A)->crono=0;
  31. #define thr_alarm_in_use(A) (A)->crono
  32. #define init_thr_alarm(A)
  33. #define thr_alarm_kill(A)
  34. #else
  35. typedef int* thr_alarm_t;
  36. #define thr_got_alarm(thr_alarm) (*thr_alarm)
  37. #define thr_alarm_init(A) (*A)=0
  38. #define thr_alarm_in_use(A) ((A) != 0)
  39. void init_thr_alarm(uint max_alarm);
  40. void thr_alarm_kill(pthread_t thread_id);
  41. sig_handler process_alarm(int);
  42. #endif /* __WIN32__ */
  43. bool thr_alarm(thr_alarm_t *alarmed,uint sec);
  44. void thr_end_alarm(thr_alarm_t *alarmed);
  45. void end_thr_alarm(void);
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. #endif