my_pthread.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:24k
源码类别:

MySQL数据库

开发平台:

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