my_pthread.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:24k
源码类别:

模拟服务器

开发平台:

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