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

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. /* Defines to make different thread packages compatible */
  4. #ifndef _my_pthread_h
  5. #define _my_pthread_h
  6. #ifndef __WIN32__
  7. #ifdef HAVE_rts_threads
  8. #define sigwait org_sigwait
  9. #include <signal.h>
  10. #undef sigwait
  11. #endif
  12. #undef _REENTRANT /* Fix if _REENTRANT is in pthread.h */
  13. #include <pthread.h>
  14. #ifndef _REENTRANT
  15. #define _REENTRANT
  16. #endif
  17. #ifdef HAVE_THR_SETCONCURRENCY
  18. #include <thread.h> /* Probably solaris */
  19. #endif
  20. #ifdef HAVE_SCHED_H
  21. #include <sched.h>
  22. #endif
  23. my_bool my_thread_global_init(void);
  24. extern my_bool my_thread_init(void);
  25. extern int my_pthread_getprio(pthread_t thread_id);
  26. #define pthread_key(T,V) pthread_key_t V
  27. #define my_pthread_getspecific_ptr(T,V) my_pthread_getspecific(T,(V))
  28. #define my_pthread_setspecific_ptr(T,V) pthread_setspecific(T,(void*) (V))
  29. #define pthread_self_ptr() pthread_self()
  30. #define pthread_detach_this_thread()
  31. #define pthread_handler_decl(A,B) void *A(void *B)
  32. typedef void *(* pthread_handler)(void *);
  33. /* Test first for RTS or FSU threads */
  34. #if defined(PTHREAD_SCOPE_GLOBAL) && !defined(PTHREAD_SCOPE_SYSTEM)
  35. #define HAVE_rts_threads
  36. void *my_pthread_getspecific_imp(pthread_key_t key);
  37. #define my_pthread_getspecific(A,B) ((A) my_pthread_getspecific_imp(B))
  38. int my_sigwait(sigset_t *set,int *sig);
  39. extern int my_pthread_create_detached;
  40. #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
  41. #define PTHREAD_CREATE_DETACHED &my_pthread_create_detached
  42. #define PTHREAD_SCOPE_SYSTEM  PTHREAD_SCOPE_GLOBAL
  43. #define PTHREAD_SCOPE_PROCESS PTHREAD_SCOPE_LOCAL
  44. #define USE_ALARM_THREAD
  45. #elif defined(HAVE_mit_thread)
  46. #define USE_ALARM_THREAD
  47. #ifndef HAVE_LOCALTIME_R
  48. #define HAVE_LOCALTIME_R
  49. #endif
  50. #ifndef HAVE_PTHREAD_ATTR_SETSCOPE
  51. #define HAVE_PTHREAD_ATTR_SETSCOPE
  52. #endif
  53. #define sigset(A,B) pthread_signal((A),(void (*)(int)) (B))
  54. #define signal(A,B) pthread_signal((A),(void (*)(int)) (B))
  55. #define my_pthread_attr_setprio(A,B)
  56. #define my_pthread_getspecific(T,A) (T) pthread_getspecific(A)
  57. #define my_sigwait(A,B) sigwait((A),(B))
  58. #else
  59. #ifndef HAVE_NONPOSIX_PTHREAD_GETSPECIFIC
  60. #define my_pthread_getspecific(A,B) ((A) pthread_getspecific(B))
  61. #define my_sigwait(A,B) sigwait((A),(B))
  62. #else
  63. #define my_pthread_getspecific(A,B) ((A) my_pthread_getspecific_imp(B))
  64. void *my_pthread_getspecific_imp(pthread_key_t key);
  65. /* #define sigwait(A,B) my_sigwait((A),(B)) */
  66. #endif
  67. #endif
  68. #ifdef HAVE_SIGTHREADMASK
  69. #define pthread_sigmask(A,B,C) sigthreadmask((A),(B),(C))
  70. #endif
  71. #if !defined(HAVE_SIGWAIT) && !defined(HAVE_mit_thread) && !defined(HAVE_rts_threads) && !defined(sigwait) && !defined(alpha_linux_port)
  72. int sigwait(sigset_t *setp, int *sigp); /* Use our implemention */
  73. #endif
  74. #if !defined(HAVE_SIGSET) && !defined(HAVE_mit_thread) && !defined(sigset)
  75. #define sigset(A,B) signal((A),(B))
  76. #endif
  77. #ifndef my_pthread_setprio
  78. #if defined(HAVE_PTHREAD_SETPRIO_NP) /* FSU threads */
  79. #define my_pthread_setprio(A,B) pthread_setprio_np((A),(B))
  80. #elif defined(HAVE_PTHREAD_SETPRIO)
  81. #define my_pthread_setprio(A,B) pthread_setprio((A),(B))
  82. #else
  83. extern void my_pthread_setprio(pthread_t thread_id,int prior);
  84. #endif
  85. #endif
  86. #ifndef my_pthread_attr_setprio
  87. #ifdef HAVE_PTHREAD_ATTR_SETPRIO
  88. #define my_pthread_attr_setprio(A,B) pthread_attr_setprio((A),(B))
  89. #else
  90. extern void my_pthread_attr_setprio(pthread_attr_t *attr, int priority);
  91. #endif
  92. #endif
  93. #ifndef HAVE_PTHREAD_ATTR_SETSCOPE
  94. #define pthread_attr_setscope(A,B)
  95. #undef HAVE_GETHOSTBYADDR_R /* No definition */
  96. #endif
  97. #ifndef HAVE_LOCALTIME_R
  98. struct tm *localtime_r(const time_t *clock, struct tm *res);
  99. #endif
  100. #ifdef AIX_3_2
  101. extern int pthread_no_free(void *);
  102. extern int pthread_dummy(int);
  103. int my_sigwait(sigset_t *set,int *sig);
  104. #define pthread_mutex_init(a,b) my_pthread_mutex_init((a),(b))
  105. extern int my_pthread_mutex_init(pthread_mutex_t *mp,
  106.  const pthread_mutexattr_t *attr);
  107. #define pthread_cond_init(a,b) my_pthread_cond_init((a),(b))
  108. extern int my_pthread_cond_init(pthread_cond_t *mp,
  109. const pthread_condattr_t *attr);
  110. #define pthread_key_create(A,B) 
  111. pthread_keycreate(A,(B) ?
  112.   (pthread_destructor_t) (B) :
  113.   (pthread_destructor_t) pthread_dummy)
  114. #define pthread_attr_init(A) pthread_attr_create(A)
  115. #define pthread_attr_destroy(A) pthread_attr_delete(A)
  116. #define pthread_attr_setscope(A,B) pthread_dummy(0)
  117. #define pthread_attr_setdetachstate(A,B) pthread_dummy(0)
  118. #define pthread_create(A,B,C,D) pthread_create((A),*(B),(C),(D))
  119. #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
  120. #define pthread_kill(A,B) pthread_dummy(0)
  121. #undef pthread_self_ptr
  122. #undef pthread_detach_this_thread
  123. #define pthread_self_ptr() 0
  124. #define pthread_detach_this_thread() pthread_detach(&pthread_self())
  125. #endif
  126. #else /* __WIN32__ */
  127. typedef CRITICAL_SECTION pthread_mutex_t;
  128. typedef HANDLE           pthread_t;
  129. typedef struct thread_attr {
  130.     DWORD dwStackSize ;
  131.     DWORD dwCreatingFlag ;
  132.     int priority ;
  133. } pthread_attr_t ;
  134. typedef struct { int dummy; } pthread_condattr_t;
  135. typedef struct {
  136.     uint msg;
  137.     pthread_t thread;
  138.     DWORD thread_id;
  139. } pthread_cond_t;
  140. struct timespec {               /* For pthread_cond_timedwait() */
  141.     time_t tv_sec;
  142.     long tv_nsec;
  143. };
  144. #define pthread_handler_decl(A,B) unsigned __cdecl A(void *B)
  145. typedef unsigned (__cdecl *pthread_handler)(void *);
  146. int pthread_dummy(int);
  147. int win_pthread_setspecific(void *A,void *B,uint length);
  148. int pthread_create(pthread_t *,pthread_attr_t *,pthread_handler,void *);
  149. int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr);
  150. int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
  151. int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
  152.                            struct timespec *abstime);
  153. int pthread_cond_signal(pthread_cond_t *cond);
  154. int pthread_attr_init(pthread_attr_t *connect_att);
  155. int pthread_attr_setstacksize(pthread_attr_t *connect_att,DWORD stack);
  156. int pthread_attr_setprio(pthread_attr_t *connect_att,int priority);
  157. int pthread_attr_destroy(pthread_attr_t *connect_att);
  158. my_bool my_thread_global_init(void);
  159. my_bool my_thread_init(void);
  160. void pthread_exit(unsigned A);   /* was #define pthread_exit(A) ExitThread(A)*/
  161. #define pthread_cond_destroy(A)
  162. #define pthread_cond_broadcast(A) pthread_cond_signal(A)
  163. #define ETIMEDOUT 145               /* Win32 doesn't have this */
  164. #define getpid() GetCurrentThreadId()
  165. #define pthread_self() GetCurrentThread()  /* it was GetCurrentThreadId() */
  166. #define pthread_self_ptr() getpid()
  167. #define localtime_r(A,B) (*B)= *localtime((A))
  168. #define HAVE_LOCALTIME_R
  169. #define pthread_key(T,V) __declspec(thread) T V
  170. #define pthread_key_create(A,B) pthread_dummy(0)
  171. #define pthread_getspecific(A) (&(A))
  172. #define my_pthread_getspecific(T,A) (&(A))
  173. #define my_pthread_getspecific_ptr(T,V) (V)
  174. #define my_pthread_setspecific_ptr(T,V) ((T)=(V),0)
  175. #define pthread_setspecific(A,B) win_pthread_setspecific(&(A),(B),sizeof(A))
  176. #define pthread_equal(A,B) (A) == (B)
  177. #define pthread_mutex_init(A,B)  InitializeCriticalSection(A)
  178. #define pthread_mutex_lock(A)    (EnterCriticalSection(A),0)
  179. #define pthread_mutex_unlock(A)  LeaveCriticalSection(A)
  180. #define pthread_mutex_destroy(A) DeleteCriticalSection(A)
  181. #define my_pthread_setprio(A,B)  SetThreadPriority(GetCurrentThread(), (B))
  182. /* Dummy defines for easier code */
  183. #define pthread_kill(A,B) pthread_dummy(0)
  184. #define pthread_attr_setdetachstate(A,B) pthread_dummy(0)
  185. #define my_pthread_attr_setprio(A,B) pthread_attr_setprio(A,B)
  186. #define pthread_attr_setscope(A,B)
  187. #define pthread_detach_this_thread()
  188. //Irena: compiler does not like this:
  189. //#define my_pthread_getprio(pthread_t thread_id) pthread_dummy(0)
  190. #define my_pthread_getprio(thread_id) pthread_dummy(0)
  191. #endif /* __WIN32__ */
  192. #endif /* _my_ptread_h */