my_pthread.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:21k
源码类别:

模拟服务器

开发平台:

C/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. /* Defines to make different thread packages compatible */
  18. #ifndef _my_pthread_h
  19. #define _my_pthread_h
  20. #include <errno.h>
  21. #ifndef ETIME
  22. #define ETIME ETIMEDOUT /* For FreeBSD */
  23. #endif
  24. #if defined(__WIN__)
  25. typedef CRITICAL_SECTION pthread_mutex_t;
  26. typedef HANDLE  pthread_t;
  27. typedef struct thread_attr {
  28.     DWORD dwStackSize ;
  29.     DWORD dwCreatingFlag ;
  30.     int priority ;
  31. } pthread_attr_t ;
  32. typedef struct { int dummy; } pthread_condattr_t;
  33. /* Implementation of posix conditions */
  34. typedef struct st_pthread_link {
  35.   DWORD thread_id;
  36.   struct st_pthread_link *next;
  37. } pthread_link;
  38. typedef struct {
  39.   uint32 waiting;
  40.   HANDLE semaphore;
  41. } pthread_cond_t;
  42. struct timespec { /* For pthread_cond_timedwait() */
  43.     time_t tv_sec;
  44.     long tv_nsec;
  45. };
  46. typedef int pthread_mutexattr_t;
  47. #define win_pthread_self my_thread_var->pthread_self
  48. #define pthread_handler_decl(A,B) void * __cdecl A(void *B)
  49. typedef void * (__cdecl *pthread_handler)(void *);
  50. void win_pthread_init(void);
  51. int win_pthread_setspecific(void *A,void *B,uint length);
  52. int pthread_create(pthread_t *,pthread_attr_t *,pthread_handler,void *);
  53. int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr);
  54. int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
  55. int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
  56.    struct timespec *abstime);
  57. int pthread_cond_signal(pthread_cond_t *cond);
  58. int pthread_cond_broadcast(pthread_cond_t *cond);
  59. int pthread_cond_destroy(pthread_cond_t *cond);
  60. int pthread_attr_init(pthread_attr_t *connect_att);
  61. int pthread_attr_setstacksize(pthread_attr_t *connect_att,DWORD stack);
  62. int pthread_attr_setprio(pthread_attr_t *connect_att,int priority);
  63. int pthread_attr_destroy(pthread_attr_t *connect_att);
  64. struct tm *localtime_r(const time_t *timep,struct tm *tmp);
  65. void pthread_exit(void *a);  /* was #define pthread_exit(A) ExitThread(A)*/
  66. #define ETIMEDOUT 145     /* Win32 doesn't have this */
  67. #define getpid() GetCurrentThreadId()
  68. #define pthread_self() win_pthread_self
  69. #define HAVE_LOCALTIME_R
  70. #define _REENTRANT
  71. #define HAVE_PTHREAD_ATTR_SETSTACKSIZE
  72. #ifdef USE_TLS /* For LIBMYSQL.DLL */
  73. #undef SAFE_MUTEX /* This will cause conflicts */
  74. #define pthread_key(T,V)  DWORD V
  75. #define pthread_key_create(A,B) ((*A=TlsAlloc())==0xFFFFFFFF)
  76. #define pthread_getspecific(A) (TlsGetValue(A))
  77. #define my_pthread_getspecific(T,A) ((T) TlsGetValue(A))
  78. #define my_pthread_getspecific_ptr(T,V) ((T) TlsGetValue(V))
  79. #define my_pthread_setspecific_ptr(T,V) (!TlsSetValue((T),(V)))
  80. #define pthread_setspecific(A,B) (!TlsSetValue((A),(B)))
  81. #else
  82. #define pthread_key(T,V) __declspec(thread) T V
  83. #define pthread_key_create(A,B) pthread_dummy(0)
  84. #define pthread_getspecific(A) (&(A))
  85. #define my_pthread_getspecific(T,A) (&(A))
  86. #define my_pthread_getspecific_ptr(T,V) (V)
  87. #define my_pthread_setspecific_ptr(T,V) ((T)=(V),0)
  88. #define pthread_setspecific(A,B) win_pthread_setspecific(&(A),(B),sizeof(A))
  89. #endif /* USE_TLS */
  90. #define pthread_equal(A,B) ((A) == (B))
  91. #define pthread_mutex_init(A,B)  InitializeCriticalSection(A)
  92. #define pthread_mutex_lock(A)  (EnterCriticalSection(A),0)
  93. #define pthread_mutex_unlock(A)  LeaveCriticalSection(A)
  94. #define pthread_mutex_destroy(A) DeleteCriticalSection(A)
  95. #define my_pthread_setprio(A,B)  SetThreadPriority(GetCurrentThread(), (B))
  96. /* Dummy defines for easier code */
  97. #define pthread_kill(A,B) pthread_dummy(0)
  98. #define pthread_attr_setdetachstate(A,B) pthread_dummy(0)
  99. #define my_pthread_attr_setprio(A,B) pthread_attr_setprio(A,B)
  100. #define pthread_attr_setscope(A,B)
  101. #define pthread_detach_this_thread()
  102. #define pthread_condattr_init(A)
  103. #define pthread_condattr_destroy(A)
  104. /*Irena: compiler does not like this: */
  105. /*#define my_pthread_getprio(pthread_t thread_id) pthread_dummy(0) */
  106. #define my_pthread_getprio(thread_id) pthread_dummy(0)
  107. #elif defined(HAVE_UNIXWARE7_THREADS)
  108. #include <thread.h>
  109. #include <synch.h>
  110. #ifndef _REENTRANT
  111. #define _REENTRANT
  112. #endif
  113. #define HAVE_NONPOSIX_SIGWAIT
  114. #define pthread_t thread_t
  115. #define pthread_cond_t cond_t
  116. #define pthread_mutex_t mutex_t
  117. #define pthread_key_t thread_key_t
  118. typedef int pthread_attr_t; /* Needed by Unixware 7.0.0 */
  119. #define pthread_key_create(A,B) thr_keycreate((A),(B))
  120. #define pthread_handler_decl(A,B) void *A(void *B)
  121. #define pthread_key(T,V) pthread_key_t V
  122. void * my_pthread_getspecific_imp(pthread_key_t key);
  123. #define my_pthread_getspecific(A,B) ((A) my_pthread_getspecific_imp(B))
  124. #define my_pthread_getspecific_ptr(T,V) my_pthread_getspecific(T,V)
  125. #define pthread_setspecific(A,B) thr_setspecific(A,B)
  126. #define my_pthread_setspecific_ptr(T,V) pthread_setspecific(T,V)
  127. #define pthread_create(A,B,C,D) thr_create(NULL,65536L,(C),(D),THR_DETACHED,(A))
  128. #define pthread_cond_init(a,b) cond_init((a),USYNC_THREAD,NULL)
  129. #define pthread_cond_destroy(a) cond_destroy(a)
  130. #define pthread_cond_signal(a) cond_signal(a)
  131. #define pthread_cond_wait(a,b) cond_wait((a),(b))
  132. #define pthread_cond_timedwait(a,b,c) cond_timedwait((a),(b),(c))
  133. #define pthread_cond_broadcast(a) cond_broadcast(a)
  134. #define pthread_mutex_init(a,b) mutex_init((a),USYNC_THREAD,NULL)
  135. #define pthread_mutex_lock(a) mutex_lock(a)
  136. #define pthread_mutex_unlock(a) mutex_unlock(a)
  137. #define pthread_mutex_destroy(a) mutex_destroy(a)
  138. #define pthread_self() thr_self()
  139. #define pthread_exit(A) thr_exit(A)
  140. #define pthread_equal(A,B) (((A) == (B)) ? 1 : 0)
  141. #define pthread_kill(A,B) thr_kill((A),(B))
  142. #define HAVE_PTHREAD_KILL
  143. #define pthread_sigmask(A,B,C) thr_sigsetmask((A),(B),(C))
  144. extern int my_sigwait(const sigset_t *set,int *sig);
  145. #define pthread_detach_this_thread() pthread_dummy(0)
  146. #define pthread_attr_init(A) pthread_dummy(0)
  147. #define pthread_attr_destroy(A) pthread_dummy(0)
  148. #define pthread_attr_setscope(A,B) pthread_dummy(0)
  149. #define pthread_attr_setdetachstate(A,B) pthread_dummy(0)
  150. #define my_pthread_setprio(A,B) pthread_dummy (0)
  151. #define my_pthread_getprio(A) pthread_dummy (0)
  152. #define my_pthread_attr_setprio(A,B) pthread_dummy(0)
  153. #else /* Normal threads */
  154. #ifdef HAVE_rts_threads
  155. #define sigwait org_sigwait
  156. #include <signal.h>
  157. #undef sigwait
  158. #endif
  159. #undef _REENTRANT /* Fix if _REENTRANT is in pthread.h */
  160. #include <pthread.h>
  161. #ifndef _REENTRANT
  162. #define _REENTRANT
  163. #endif
  164. #ifdef HAVE_THR_SETCONCURRENCY
  165. #include <thread.h> /* Probably solaris */
  166. #endif
  167. #ifdef HAVE_SCHED_H
  168. #include <sched.h>
  169. #endif
  170. #ifdef HAVE_SYNCH_H
  171. #include <synch.h>
  172. #endif
  173. #if defined(__EMX__) && (!defined(EMX_PTHREAD_REV) || (EMX_PTHREAD_REV < 2))
  174. #error Requires at least rev 2 of EMX pthreads library.
  175. #endif
  176. extern int my_pthread_getprio(pthread_t thread_id);
  177. #define pthread_key(T,V) pthread_key_t V
  178. #define my_pthread_getspecific_ptr(T,V) my_pthread_getspecific(T,(V))
  179. #define my_pthread_setspecific_ptr(T,V) pthread_setspecific(T,(void*) (V))
  180. #define pthread_detach_this_thread()
  181. #define pthread_handler_decl(A,B) void *A(void *B)
  182. typedef void *(* pthread_handler)(void *);
  183. /* Test first for RTS or FSU threads */
  184. #if defined(PTHREAD_SCOPE_GLOBAL) && !defined(PTHREAD_SCOPE_SYSTEM)
  185. #define HAVE_rts_threads
  186. extern int my_pthread_create_detached;
  187. #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
  188. #define PTHREAD_CREATE_DETACHED &my_pthread_create_detached
  189. #define PTHREAD_SCOPE_SYSTEM  PTHREAD_SCOPE_GLOBAL
  190. #define PTHREAD_SCOPE_PROCESS PTHREAD_SCOPE_LOCAL
  191. #define USE_ALARM_THREAD
  192. #elif defined(HAVE_mit_thread)
  193. #define USE_ALARM_THREAD
  194. #undef HAVE_LOCALTIME_R
  195. #define HAVE_LOCALTIME_R
  196. #undef HAVE_PTHREAD_ATTR_SETSCOPE
  197. #define HAVE_PTHREAD_ATTR_SETSCOPE
  198. #undef HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE /* If we are running linux */
  199. #undef HAVE_RWLOCK_T
  200. #undef HAVE_RWLOCK_INIT
  201. #undef HAVE_PTHREAD_RWLOCK_RDLOCK
  202. #undef HAVE_SNPRINTF
  203. #define sigset(A,B) pthread_signal((A),(void (*)(int)) (B))
  204. #define signal(A,B) pthread_signal((A),(void (*)(int)) (B))
  205. #define my_pthread_attr_setprio(A,B)
  206. #endif /* defined(PTHREAD_SCOPE_GLOBAL) && !defined(PTHREAD_SCOPE_SYSTEM) */
  207. #if defined(_BSDI_VERSION) && _BSDI_VERSION < 199910
  208. int sigwait(sigset_t *set, int *sig);
  209. #endif
  210. #if defined(HAVE_UNIXWARE7_POSIX)
  211. #undef HAVE_NONPOSIX_SIGWAIT
  212. #define HAVE_NONPOSIX_SIGWAIT /* sigwait takes only 1 argument */
  213. #endif
  214. #ifndef HAVE_NONPOSIX_SIGWAIT
  215. #define my_sigwait(A,B) sigwait((A),(B))
  216. #else
  217. int my_sigwait(const sigset_t *set,int *sig);
  218. #endif
  219. #ifdef HAVE_NONPOSIX_PTHREAD_MUTEX_INIT
  220. #ifndef SAFE_MUTEX
  221. #define pthread_mutex_init(a,b) my_pthread_mutex_init((a),(b))
  222. extern int my_pthread_mutex_init(pthread_mutex_t *mp,
  223.  const pthread_mutexattr_t *attr);
  224. #endif /* SAFE_MUTEX */
  225. #define pthread_cond_init(a,b) my_pthread_cond_init((a),(b))
  226. extern int my_pthread_cond_init(pthread_cond_t *mp,
  227. const pthread_condattr_t *attr);
  228. #endif /* HAVE_NONPOSIX_PTHREAD_MUTEX_INIT */
  229. #if defined(HAVE_SIGTHREADMASK) && !defined(HAVE_PTHREAD_SIGMASK)
  230. #define pthread_sigmask(A,B,C) sigthreadmask((A),(B),(C))
  231. #endif
  232. #if !defined(HAVE_SIGWAIT) && !defined(HAVE_mit_thread) && !defined(HAVE_rts_threads) && !defined(sigwait) && !defined(alpha_linux_port) && !defined(HAVE_NONPOSIX_SIGWAIT) && !defined(HAVE_DEC_3_2_THREADS) && !defined(_AIX)
  233. int sigwait(sigset_t *setp, int *sigp); /* Use our implemention */
  234. #endif
  235. #if !defined(HAVE_SIGSET) && !defined(HAVE_mit_thread) && !defined(sigset)
  236. #define sigset(A,B) do { struct sigaction s; sigset_t set;              
  237.                          sigemptyset(&set);                             
  238.                          s.sa_handler = (B);                            
  239.                          s.sa_mask    = set;                            
  240.                          s.sa_flags   = 0;                              
  241.                          sigaction((A), &s, (struct sigaction *) NULL); 
  242.                        } while (0)
  243. #endif
  244. #ifndef my_pthread_setprio
  245. #if defined(HAVE_PTHREAD_SETPRIO_NP) /* FSU threads */
  246. #define my_pthread_setprio(A,B) pthread_setprio_np((A),(B))
  247. #elif defined(HAVE_PTHREAD_SETPRIO)
  248. #define my_pthread_setprio(A,B) pthread_setprio((A),(B))
  249. #else
  250. extern void my_pthread_setprio(pthread_t thread_id,int prior);
  251. #endif
  252. #endif
  253. #ifndef my_pthread_attr_setprio
  254. #ifdef HAVE_PTHREAD_ATTR_SETPRIO
  255. #define my_pthread_attr_setprio(A,B) pthread_attr_setprio((A),(B))
  256. #else
  257. extern void my_pthread_attr_setprio(pthread_attr_t *attr, int priority);
  258. #endif
  259. #endif
  260. #if !defined(HAVE_PTHREAD_ATTR_SETSCOPE) || defined(HAVE_DEC_3_2_THREADS)
  261. #define pthread_attr_setscope(A,B)
  262. #undef HAVE_GETHOSTBYADDR_R /* No definition */
  263. #endif
  264. #ifndef HAVE_NONPOSIX_PTHREAD_GETSPECIFIC
  265. #define my_pthread_getspecific(A,B) ((A) pthread_getspecific(B))
  266. #else
  267. #define my_pthread_getspecific(A,B) ((A) my_pthread_getspecific_imp(B))
  268. void *my_pthread_getspecific_imp(pthread_key_t key);
  269. #endif
  270. #ifndef HAVE_LOCALTIME_R
  271. struct tm *localtime_r(const time_t *clock, struct tm *res);
  272. #endif
  273. #ifdef HAVE_PTHREAD_CONDATTR_CREATE
  274. /* DCE threads on HPUX 10.20 */
  275. #define pthread_condattr_init pthread_condattr_create
  276. #define pthread_condattr_destroy pthread_condattr_delete
  277. #endif
  278. #ifdef HAVE_CTHREADS_WRAPPER /* For MacOSX */
  279. #define pthread_cond_destroy(A) pthread_dummy(0)
  280. #define pthread_mutex_destroy(A) pthread_dummy(0)
  281. #define pthread_attr_delete(A) pthread_dummy(0)
  282. #define pthread_condattr_delete(A) pthread_dummy(0)
  283. #define pthread_attr_setstacksize(A,B) pthread_dummy(0)
  284. #define pthread_equal(A,B) ((A) == (B))
  285. #define pthread_cond_timedwait(a,b,c) pthread_cond_wait((a),(b))
  286. #define pthread_attr_init(A) pthread_attr_create(A)
  287. #define pthread_attr_destroy(A) pthread_attr_delete(A)
  288. #define pthread_attr_setdetachstate(A,B) pthread_dummy(0)
  289. #define pthread_create(A,B,C,D) pthread_create((A),*(B),(C),(D))
  290. #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
  291. #define pthread_kill(A,B) pthread_dummy(0)
  292. #undef pthread_detach_this_thread
  293. #define pthread_detach_this_thread() { pthread_t tmp=pthread_self() ; pthread_detach(&tmp); }
  294. #endif
  295. #ifdef HAVE_DARWIN_THREADS
  296. #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
  297. #define pthread_kill(A,B) pthread_dummy(0)
  298. #define pthread_condattr_init(A) pthread_dummy(0)
  299. #define pthread_condattr_destroy(A) pthread_dummy(0)
  300. #define pthread_signal(A,B) pthread_dummy(0)
  301. #undef pthread_detach_this_thread
  302. #define pthread_detach_this_thread() { pthread_t tmp=pthread_self() ; pthread_detach(tmp); }
  303. #undef sigset
  304. #define sigset(A,B) pthread_signal((A),(void (*)(int)) (B))
  305. #endif
  306. #if ((defined(HAVE_PTHREAD_ATTR_CREATE) && !defined(HAVE_SIGWAIT)) || defined(HAVE_DEC_3_2_THREADS)) && !defined(HAVE_CTHREADS_WRAPPER)
  307. /* This is set on AIX_3_2 and Siemens unix (and DEC OSF/1 3.2 too) */
  308. #define pthread_key_create(A,B) 
  309. pthread_keycreate(A,(B) ?
  310.   (pthread_destructor_t) (B) :
  311.   (pthread_destructor_t) pthread_dummy)
  312. #define pthread_attr_init(A) pthread_attr_create(A)
  313. #define pthread_attr_destroy(A) pthread_attr_delete(A)
  314. #define pthread_attr_setdetachstate(A,B) pthread_dummy(0)
  315. #define pthread_create(A,B,C,D) pthread_create((A),*(B),(C),(D))
  316. #ifndef pthread_sigmask
  317. #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
  318. #endif
  319. #define pthread_kill(A,B) pthread_dummy(0)
  320. #undef pthread_detach_this_thread
  321. #define pthread_detach_this_thread() { pthread_t tmp=pthread_self() ; pthread_detach(&tmp); }
  322. #else /* HAVE_PTHREAD_ATTR_CREATE && !HAVE_SIGWAIT */
  323. #define HAVE_PTHREAD_KILL
  324. #endif
  325. #if defined(HAVE_PTHREAD_ATTR_CREATE) || defined(_AIX) || defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE)
  326. #if !defined(HPUX)
  327. struct hostent;
  328. #endif /* HPUX */
  329. struct hostent *my_gethostbyname_r(const char *name,
  330.    struct hostent *result, char *buffer,
  331.    int buflen, int *h_errnop);
  332. #if defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE)
  333. #define GETHOSTBYNAME_BUFF_SIZE 2048
  334. #else
  335. #define GETHOSTBYNAME_BUFF_SIZE sizeof(struct hostent_data)
  336. #endif /* defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE) */
  337. #else
  338. #ifdef HAVE_GETHOSTBYNAME_R_RETURN_INT
  339. #define GETHOSTBYNAME_BUFF_SIZE sizeof(struct hostent_data)
  340. struct hostent *my_gethostbyname_r(const char *name,
  341.    struct hostent *result, char *buffer,
  342.    int buflen, int *h_errnop);
  343. #else
  344. #define GETHOSTBYNAME_BUFF_SIZE 2048
  345. #define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(C),(D),(E))
  346. #endif /* HAVE_GETHOSTBYNAME_R_RETURN_INT */
  347. #endif /* defined(HAVE_PTHREAD_ATTR_CREATE) || defined(_AIX) || defined(HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE) */
  348. #endif /* defined(__WIN__) */
  349. /* safe_mutex adds checking to mutex for easier debugging */
  350. typedef struct st_safe_mutex_t
  351. {
  352.   pthread_mutex_t global,mutex;
  353.   char *file;
  354.   uint line,count;
  355.   pthread_t thread;
  356. } safe_mutex_t;
  357. int safe_mutex_init(safe_mutex_t *mp, const pthread_mutexattr_t *attr);
  358. int safe_mutex_lock(safe_mutex_t *mp,const char *file, uint line);
  359. int safe_mutex_unlock(safe_mutex_t *mp,const char *file, uint line);
  360. int safe_mutex_destroy(safe_mutex_t *mp,const char *file, uint line);
  361. int safe_cond_wait(pthread_cond_t *cond, safe_mutex_t *mp,const char *file,
  362.    uint line);
  363. int safe_cond_timedwait(pthread_cond_t *cond, safe_mutex_t *mp,
  364. struct timespec *abstime, const char *file, uint line);
  365. /* Wrappers if safe mutex is actually used */
  366. #ifdef SAFE_MUTEX
  367. #undef pthread_mutex_init
  368. #undef pthread_mutex_lock
  369. #undef pthread_mutex_unlock
  370. #undef pthread_mutex_destroy
  371. #undef pthread_mutex_wait
  372. #undef pthread_mutex_timedwait
  373. #undef pthread_mutex_t
  374. #undef pthread_cond_wait
  375. #undef pthread_cond_timedwait
  376. #define pthread_mutex_init(A,B) safe_mutex_init((A),(B))
  377. #define pthread_mutex_lock(A) safe_mutex_lock((A),__FILE__,__LINE__)
  378. #define pthread_mutex_unlock(A) safe_mutex_unlock((A),__FILE__,__LINE__)
  379. #define pthread_mutex_destroy(A) safe_mutex_destroy((A),__FILE__,__LINE__)
  380. #define pthread_cond_wait(A,B) safe_cond_wait((A),(B),__FILE__,__LINE__)
  381. #define pthread_cond_timedwait(A,B,C) safe_cond_timedwait((A),(B),(C),__FILE__,__LINE__)
  382. #define pthread_mutex_t safe_mutex_t
  383. #endif /* SAFE_MUTEX */
  384. /* READ-WRITE thread locking */
  385. #if defined(USE_MUTEX_INSTEAD_OF_RW_LOCKS)
  386. /* use these defs for simple mutex locking */
  387. #define rw_lock_t pthread_mutex_t
  388. #define my_rwlock_init(A,B) pthread_mutex_init((A),(B))
  389. #define rw_rdlock(A) pthread_mutex_lock((A))
  390. #define rw_wrlock(A) pthread_mutex_lock((A))
  391. #define rw_unlock(A) pthread_mutex_unlock((A))
  392. #define rwlock_destroy(A) pthread_mutex_destroy((A))
  393. #elif defined(HAVE_PTHREAD_RWLOCK_RDLOCK)
  394. #define rw_lock_t pthread_rwlock_t
  395. #define my_rwlock_init(A,B) pthread_rwlock_init((A),(B))
  396. #define rw_rdlock(A) pthread_rwlock_rdlock(A)
  397. #define rw_wrlock(A) pthread_rwlock_wrlock(A)
  398. #define rw_unlock(A) pthread_rwlock_unlock(A)
  399. #define rwlock_destroy(A) pthread_rwlock_destroy(A)
  400. #elif defined(HAVE_RWLOCK_INIT)
  401. #ifdef HAVE_RWLOCK_T /* For example Solaris 2.6-> */
  402. #define rw_lock_t rwlock_t
  403. #endif
  404. #define my_rwlock_init(A,B) rwlock_init((A),USYNC_THREAD,0)
  405. #else
  406. /* Use our own version of read/write locks */
  407. typedef struct _my_rw_lock_t {
  408. pthread_mutex_t lock; /* lock for structure */
  409. pthread_cond_t readers; /* waiting readers */
  410. pthread_cond_t writers; /* waiting writers */
  411. int state; /* -1:writer,0:free,>0:readers */
  412. int waiters; /* number of waiting writers */
  413. } my_rw_lock_t;
  414. #define rw_lock_t my_rw_lock_t
  415. #define rw_rdlock(A) my_rw_rdlock((A))
  416. #define rw_wrlock(A) my_rw_wrlock((A))
  417. #define rw_unlock(A) my_rw_unlock((A))
  418. #define rwlock_destroy(A) my_rwlock_destroy((A))
  419. extern int my_rwlock_init( my_rw_lock_t *, void * );
  420. extern int my_rwlock_destroy( my_rw_lock_t * );
  421. extern int my_rw_rdlock( my_rw_lock_t * );
  422. extern int my_rw_wrlock( my_rw_lock_t * );
  423. extern int my_rw_unlock( my_rw_lock_t * );
  424. #endif /* USE_MUTEX_INSTEAD_OF_RW_LOCKS */
  425. #define GETHOSTBYADDR_BUFF_SIZE 2048
  426. #ifndef HAVE_THR_SETCONCURRENCY
  427. #define thr_setconcurrency(A) pthread_dummy(0)
  428. #endif
  429. #if !defined(HAVE_PTHREAD_ATTR_SETSTACKSIZE) && ! defined(pthread_attr_setstacksize)
  430. #define pthread_attr_setstacksize(A,B) pthread_dummy(0)
  431. #endif
  432. extern my_bool my_thread_global_init(void);
  433. extern void my_thread_global_end(void);
  434. extern my_bool my_thread_init(void);
  435. extern void my_thread_end(void);
  436. extern char *my_thread_name(void);
  437. extern long my_thread_id(void);
  438. extern int pthread_no_free(void *);
  439. extern int pthread_dummy(int);
  440. /* All thread specific variables are in the following struct */
  441. #define THREAD_NAME_SIZE 10
  442. #if defined(__ia64__)
  443. #define DEFAULT_THREAD_STACK (128*1024)
  444. #else
  445. #define DEFAULT_THREAD_STACK (64*1024)
  446. #endif
  447. struct st_my_thread_var
  448. {
  449.   int thr_errno;
  450.   pthread_cond_t suspend, *current_cond;
  451.   pthread_mutex_t mutex,  *current_mutex;
  452.   pthread_t pthread_self;
  453.   long id;
  454.   int cmp_length;
  455.   volatile int abort;
  456. #ifndef DBUG_OFF
  457.   gptr dbug;
  458.   char name[THREAD_NAME_SIZE+1];
  459. #endif
  460. };
  461. extern struct st_my_thread_var *_my_thread_var(void) __attribute__ ((const));
  462. #define my_thread_var (_my_thread_var())
  463. #define my_errno my_thread_var->thr_errno
  464. /* statistics_xxx functions are for not essential statistic */
  465. #ifndef thread_safe_increment
  466. #ifdef HAVE_ATOMIC_ADD
  467. #define thread_safe_increment(V,L) atomic_add(1,(atomic_t*) &V);
  468. #define thread_safe_add(V,C,L)     atomic_add((C),(atomic_t*) &V);
  469. #define thread_safe_sub(V,C,L)     atomic_sub((C),(atomic_t*) &V);
  470. #define statistic_increment(V,L)   thread_safe_increment((V),(L))
  471. #define statistic_add(V,C,L)       thread_safe_add((V),(C),(L))
  472. #else
  473. #define thread_safe_increment(V,L) 
  474. pthread_mutex_lock((L)); (V)++; pthread_mutex_unlock((L));
  475. #define thread_safe_add(V,C,L) 
  476. pthread_mutex_lock((L)); (V)+=(C); pthread_mutex_unlock((L));
  477. #define thread_safe_sub(V,C,L) 
  478. pthread_mutex_lock((L)); (V)-=(C); pthread_mutex_unlock((L));
  479. #ifdef SAFE_STATISTICS
  480. #define statistic_increment(V,L)   thread_safe_increment((V),(L))
  481. #define statistic_add(V,C,L)       thread_safe_add((V),(C),(L))
  482. #else
  483. #define statistic_increment(V,L) (V)++
  484. #define statistic_add(V,C,L)     (V)+=(C)
  485. #endif /* SAFE_STATISTICS */
  486. #endif /* HAVE_ATOMIC_ADD */
  487. #endif /* thread_safe_increment */
  488. #endif /* _my_ptread_h */