lock.h 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. /* Locking in multithreaded situations.
  2. Copyright (C) 2005-2006 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published
  5. by the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. USA. */
  15. /* Written by Bruno Haible <bruno@clisp.org>, 2005.
  16. Based on GCC's gthr-posix.h, gthr-posix95.h, gthr-solaris.h,
  17. gthr-win32.h. */
  18. /* This file contains locking primitives for use with a given thread library.
  19. It does not contain primitives for creating threads or for other
  20. synchronization primitives.
  21. Normal (non-recursive) locks:
  22. Type: gl_lock_t
  23. Declaration: gl_lock_define(extern, name)
  24. Initializer: gl_lock_define_initialized(, name)
  25. Initialization: gl_lock_init (name);
  26. Taking the lock: gl_lock_lock (name);
  27. Releasing the lock: gl_lock_unlock (name);
  28. De-initialization: gl_lock_destroy (name);
  29. Read-Write (non-recursive) locks:
  30. Type: gl_rwlock_t
  31. Declaration: gl_rwlock_define(extern, name)
  32. Initializer: gl_rwlock_define_initialized(, name)
  33. Initialization: gl_rwlock_init (name);
  34. Taking the lock: gl_rwlock_rdlock (name);
  35. gl_rwlock_wrlock (name);
  36. Releasing the lock: gl_rwlock_unlock (name);
  37. De-initialization: gl_rwlock_destroy (name);
  38. Recursive locks:
  39. Type: gl_recursive_lock_t
  40. Declaration: gl_recursive_lock_define(extern, name)
  41. Initializer: gl_recursive_lock_define_initialized(, name)
  42. Initialization: gl_recursive_lock_init (name);
  43. Taking the lock: gl_recursive_lock_lock (name);
  44. Releasing the lock: gl_recursive_lock_unlock (name);
  45. De-initialization: gl_recursive_lock_destroy (name);
  46. Once-only execution:
  47. Type: gl_once_t
  48. Initializer: gl_once_define(extern, name)
  49. Execution: gl_once (name, initfunction);
  50. */
  51. #ifndef _LOCK_H
  52. #define _LOCK_H
  53. /* ========================================================================= */
  54. #if USE_POSIX_THREADS
  55. /* Use the POSIX threads library. */
  56. # include <pthread.h>
  57. # include <stdlib.h>
  58. # ifdef __cplusplus
  59. extern "C" {
  60. # endif
  61. # if PTHREAD_IN_USE_DETECTION_HARD
  62. /* The pthread_in_use() detection needs to be done at runtime. */
  63. # define pthread_in_use() \
  64. glthread_in_use ()
  65. extern int glthread_in_use (void);
  66. # endif
  67. # if USE_POSIX_THREADS_WEAK
  68. /* Use weak references to the POSIX threads library. */
  69. /* Weak references avoid dragging in external libraries if the other parts
  70. of the program don't use them. Here we use them, because we don't want
  71. every program that uses libintl to depend on libpthread. This assumes
  72. that libpthread would not be loaded after libintl; i.e. if libintl is
  73. loaded first, by an executable that does not depend on libpthread, and
  74. then a module is dynamically loaded that depends on libpthread, libintl
  75. will not be multithread-safe. */
  76. /* The way to test at runtime whether libpthread is present is to test
  77. whether a function pointer's value, such as &pthread_mutex_init, is
  78. non-NULL. However, some versions of GCC have a bug through which, in
  79. PIC mode, &foo != NULL always evaluates to true if there is a direct
  80. call to foo(...) in the same function. To avoid this, we test the
  81. address of a function in libpthread that we don't use. */
  82. # pragma weak pthread_mutex_init
  83. # pragma weak pthread_mutex_lock
  84. # pragma weak pthread_mutex_unlock
  85. # pragma weak pthread_mutex_destroy
  86. # pragma weak pthread_rwlock_init
  87. # pragma weak pthread_rwlock_rdlock
  88. # pragma weak pthread_rwlock_wrlock
  89. # pragma weak pthread_rwlock_unlock
  90. # pragma weak pthread_rwlock_destroy
  91. # pragma weak pthread_once
  92. # pragma weak pthread_cond_init
  93. # pragma weak pthread_cond_wait
  94. # pragma weak pthread_cond_signal
  95. # pragma weak pthread_cond_broadcast
  96. # pragma weak pthread_cond_destroy
  97. # pragma weak pthread_mutexattr_init
  98. # pragma weak pthread_mutexattr_settype
  99. # pragma weak pthread_mutexattr_destroy
  100. # ifndef pthread_self
  101. # pragma weak pthread_self
  102. # endif
  103. # if !PTHREAD_IN_USE_DETECTION_HARD
  104. # pragma weak pthread_cancel
  105. # define pthread_in_use() (pthread_cancel != NULL)
  106. # endif
  107. # else
  108. # if !PTHREAD_IN_USE_DETECTION_HARD
  109. # define pthread_in_use() 1
  110. # endif
  111. # endif
  112. /* -------------------------- gl_lock_t datatype -------------------------- */
  113. typedef pthread_mutex_t gl_lock_t;
  114. # define gl_lock_define(STORAGECLASS, NAME) \
  115. STORAGECLASS pthread_mutex_t NAME;
  116. # define gl_lock_define_initialized(STORAGECLASS, NAME) \
  117. STORAGECLASS pthread_mutex_t NAME = gl_lock_initializer;
  118. # define gl_lock_initializer \
  119. PTHREAD_MUTEX_INITIALIZER
  120. # define gl_lock_init(NAME) \
  121. if (pthread_in_use () && pthread_mutex_init (&NAME, NULL) != 0) abort ()
  122. # define gl_lock_lock(NAME) \
  123. if (pthread_in_use () && pthread_mutex_lock (&NAME) != 0) abort ()
  124. # define gl_lock_unlock(NAME) \
  125. if (pthread_in_use () && pthread_mutex_unlock (&NAME) != 0) abort ()
  126. # define gl_lock_destroy(NAME) \
  127. if (pthread_in_use () && pthread_mutex_destroy (&NAME) != 0) abort ()
  128. /* ------------------------- gl_rwlock_t datatype ------------------------- */
  129. # if HAVE_PTHREAD_RWLOCK
  130. # ifdef PTHREAD_RWLOCK_INITIALIZER
  131. typedef pthread_rwlock_t gl_rwlock_t;
  132. # define gl_rwlock_define(STORAGECLASS, NAME) \
  133. STORAGECLASS pthread_rwlock_t NAME;
  134. # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \
  135. STORAGECLASS pthread_rwlock_t NAME = gl_rwlock_initializer;
  136. # define gl_rwlock_initializer \
  137. PTHREAD_RWLOCK_INITIALIZER
  138. # define gl_rwlock_init(NAME) \
  139. if (pthread_in_use () && pthread_rwlock_init (&NAME, NULL) != 0) abort ()
  140. # define gl_rwlock_rdlock(NAME) \
  141. if (pthread_in_use () && pthread_rwlock_rdlock (&NAME) != 0) abort ()
  142. # define gl_rwlock_wrlock(NAME) \
  143. if (pthread_in_use () && pthread_rwlock_wrlock (&NAME) != 0) abort ()
  144. # define gl_rwlock_unlock(NAME) \
  145. if (pthread_in_use () && pthread_rwlock_unlock (&NAME) != 0) abort ()
  146. # define gl_rwlock_destroy(NAME) \
  147. if (pthread_in_use () && pthread_rwlock_destroy (&NAME) != 0) abort ()
  148. # else
  149. typedef struct
  150. {
  151. int initialized;
  152. pthread_mutex_t guard; /* protects the initialization */
  153. pthread_rwlock_t rwlock; /* read-write lock */
  154. }
  155. gl_rwlock_t;
  156. # define gl_rwlock_define(STORAGECLASS, NAME) \
  157. STORAGECLASS gl_rwlock_t NAME;
  158. # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \
  159. STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer;
  160. # define gl_rwlock_initializer \
  161. { 0, PTHREAD_MUTEX_INITIALIZER }
  162. # define gl_rwlock_init(NAME) \
  163. if (pthread_in_use ()) glthread_rwlock_init (&NAME)
  164. # define gl_rwlock_rdlock(NAME) \
  165. if (pthread_in_use ()) glthread_rwlock_rdlock (&NAME)
  166. # define gl_rwlock_wrlock(NAME) \
  167. if (pthread_in_use ()) glthread_rwlock_wrlock (&NAME)
  168. # define gl_rwlock_unlock(NAME) \
  169. if (pthread_in_use ()) glthread_rwlock_unlock (&NAME)
  170. # define gl_rwlock_destroy(NAME) \
  171. if (pthread_in_use ()) glthread_rwlock_destroy (&NAME)
  172. extern void glthread_rwlock_init (gl_rwlock_t *lock);
  173. extern void glthread_rwlock_rdlock (gl_rwlock_t *lock);
  174. extern void glthread_rwlock_wrlock (gl_rwlock_t *lock);
  175. extern void glthread_rwlock_unlock (gl_rwlock_t *lock);
  176. extern void glthread_rwlock_destroy (gl_rwlock_t *lock);
  177. # endif
  178. # else
  179. typedef struct
  180. {
  181. pthread_mutex_t lock; /* protects the remaining fields */
  182. pthread_cond_t waiting_readers; /* waiting readers */
  183. pthread_cond_t waiting_writers; /* waiting writers */
  184. unsigned int waiting_writers_count; /* number of waiting writers */
  185. int runcount; /* number of readers running, or -1 when a writer runs */
  186. }
  187. gl_rwlock_t;
  188. # define gl_rwlock_define(STORAGECLASS, NAME) \
  189. STORAGECLASS gl_rwlock_t NAME;
  190. # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \
  191. STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer;
  192. # define gl_rwlock_initializer \
  193. { PTHREAD_MUTEX_INITIALIZER, PTHREAD_COND_INITIALIZER, PTHREAD_COND_INITIALIZER, 0, 0 }
  194. # define gl_rwlock_init(NAME) \
  195. if (pthread_in_use ()) glthread_rwlock_init (&NAME)
  196. # define gl_rwlock_rdlock(NAME) \
  197. if (pthread_in_use ()) glthread_rwlock_rdlock (&NAME)
  198. # define gl_rwlock_wrlock(NAME) \
  199. if (pthread_in_use ()) glthread_rwlock_wrlock (&NAME)
  200. # define gl_rwlock_unlock(NAME) \
  201. if (pthread_in_use ()) glthread_rwlock_unlock (&NAME)
  202. # define gl_rwlock_destroy(NAME) \
  203. if (pthread_in_use ()) glthread_rwlock_destroy (&NAME)
  204. extern void glthread_rwlock_init (gl_rwlock_t *lock);
  205. extern void glthread_rwlock_rdlock (gl_rwlock_t *lock);
  206. extern void glthread_rwlock_wrlock (gl_rwlock_t *lock);
  207. extern void glthread_rwlock_unlock (gl_rwlock_t *lock);
  208. extern void glthread_rwlock_destroy (gl_rwlock_t *lock);
  209. # endif
  210. /* --------------------- gl_recursive_lock_t datatype --------------------- */
  211. # if HAVE_PTHREAD_MUTEX_RECURSIVE
  212. # if defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER || defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
  213. typedef pthread_mutex_t gl_recursive_lock_t;
  214. # define gl_recursive_lock_define(STORAGECLASS, NAME) \
  215. STORAGECLASS pthread_mutex_t NAME;
  216. # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \
  217. STORAGECLASS pthread_mutex_t NAME = gl_recursive_lock_initializer;
  218. # ifdef PTHREAD_RECURSIVE_MUTEX_INITIALIZER
  219. # define gl_recursive_lock_initializer \
  220. PTHREAD_RECURSIVE_MUTEX_INITIALIZER
  221. # else
  222. # define gl_recursive_lock_initializer \
  223. PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
  224. # endif
  225. # define gl_recursive_lock_init(NAME) \
  226. if (pthread_in_use () && pthread_mutex_init (&NAME, NULL) != 0) abort ()
  227. # define gl_recursive_lock_lock(NAME) \
  228. if (pthread_in_use () && pthread_mutex_lock (&NAME) != 0) abort ()
  229. # define gl_recursive_lock_unlock(NAME) \
  230. if (pthread_in_use () && pthread_mutex_unlock (&NAME) != 0) abort ()
  231. # define gl_recursive_lock_destroy(NAME) \
  232. if (pthread_in_use () && pthread_mutex_destroy (&NAME) != 0) abort ()
  233. # else
  234. typedef struct
  235. {
  236. pthread_mutex_t recmutex; /* recursive mutex */
  237. pthread_mutex_t guard; /* protects the initialization */
  238. int initialized;
  239. }
  240. gl_recursive_lock_t;
  241. # define gl_recursive_lock_define(STORAGECLASS, NAME) \
  242. STORAGECLASS gl_recursive_lock_t NAME;
  243. # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \
  244. STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer;
  245. # define gl_recursive_lock_initializer \
  246. { PTHREAD_MUTEX_INITIALIZER, PTHREAD_MUTEX_INITIALIZER, 0 }
  247. # define gl_recursive_lock_init(NAME) \
  248. if (pthread_in_use ()) glthread_recursive_lock_init (&NAME)
  249. # define gl_recursive_lock_lock(NAME) \
  250. if (pthread_in_use ()) glthread_recursive_lock_lock (&NAME)
  251. # define gl_recursive_lock_unlock(NAME) \
  252. if (pthread_in_use ()) glthread_recursive_lock_unlock (&NAME)
  253. # define gl_recursive_lock_destroy(NAME) \
  254. if (pthread_in_use ()) glthread_recursive_lock_destroy (&NAME)
  255. extern void glthread_recursive_lock_init (gl_recursive_lock_t *lock);
  256. extern void glthread_recursive_lock_lock (gl_recursive_lock_t *lock);
  257. extern void glthread_recursive_lock_unlock (gl_recursive_lock_t *lock);
  258. extern void glthread_recursive_lock_destroy (gl_recursive_lock_t *lock);
  259. # endif
  260. # else
  261. /* Old versions of POSIX threads on Solaris did not have recursive locks.
  262. We have to implement them ourselves. */
  263. typedef struct
  264. {
  265. pthread_mutex_t mutex;
  266. pthread_t owner;
  267. unsigned long depth;
  268. }
  269. gl_recursive_lock_t;
  270. # define gl_recursive_lock_define(STORAGECLASS, NAME) \
  271. STORAGECLASS gl_recursive_lock_t NAME;
  272. # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \
  273. STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer;
  274. # define gl_recursive_lock_initializer \
  275. { PTHREAD_MUTEX_INITIALIZER, (pthread_t) 0, 0 }
  276. # define gl_recursive_lock_init(NAME) \
  277. if (pthread_in_use ()) glthread_recursive_lock_init (&NAME)
  278. # define gl_recursive_lock_lock(NAME) \
  279. if (pthread_in_use ()) glthread_recursive_lock_lock (&NAME)
  280. # define gl_recursive_lock_unlock(NAME) \
  281. if (pthread_in_use ()) glthread_recursive_lock_unlock (&NAME)
  282. # define gl_recursive_lock_destroy(NAME) \
  283. if (pthread_in_use ()) glthread_recursive_lock_destroy (&NAME)
  284. extern void glthread_recursive_lock_init (gl_recursive_lock_t *lock);
  285. extern void glthread_recursive_lock_lock (gl_recursive_lock_t *lock);
  286. extern void glthread_recursive_lock_unlock (gl_recursive_lock_t *lock);
  287. extern void glthread_recursive_lock_destroy (gl_recursive_lock_t *lock);
  288. # endif
  289. /* -------------------------- gl_once_t datatype -------------------------- */
  290. typedef pthread_once_t gl_once_t;
  291. # define gl_once_define(STORAGECLASS, NAME) \
  292. STORAGECLASS pthread_once_t NAME = PTHREAD_ONCE_INIT;
  293. # define gl_once(NAME, INITFUNCTION) \
  294. do \
  295. { \
  296. if (pthread_in_use ()) \
  297. { \
  298. if (pthread_once (&NAME, INITFUNCTION) != 0) \
  299. abort (); \
  300. } \
  301. else \
  302. { \
  303. if (glthread_once_singlethreaded (&NAME)) \
  304. INITFUNCTION (); \
  305. } \
  306. } \
  307. while (0)
  308. extern int glthread_once_singlethreaded (pthread_once_t *once_control);
  309. # ifdef __cplusplus
  310. }
  311. # endif
  312. #endif
  313. /* ========================================================================= */
  314. #if USE_PTH_THREADS
  315. /* Use the GNU Pth threads library. */
  316. # include <pth.h>
  317. # include <stdlib.h>
  318. # ifdef __cplusplus
  319. extern "C" {
  320. # endif
  321. # if USE_PTH_THREADS_WEAK
  322. /* Use weak references to the GNU Pth threads library. */
  323. # pragma weak pth_mutex_init
  324. # pragma weak pth_mutex_acquire
  325. # pragma weak pth_mutex_release
  326. # pragma weak pth_rwlock_init
  327. # pragma weak pth_rwlock_acquire
  328. # pragma weak pth_rwlock_release
  329. # pragma weak pth_once
  330. # pragma weak pth_cancel
  331. # define pth_in_use() (pth_cancel != NULL)
  332. # else
  333. # define pth_in_use() 1
  334. # endif
  335. /* -------------------------- gl_lock_t datatype -------------------------- */
  336. typedef pth_mutex_t gl_lock_t;
  337. # define gl_lock_define(STORAGECLASS, NAME) \
  338. STORAGECLASS pth_mutex_t NAME;
  339. # define gl_lock_define_initialized(STORAGECLASS, NAME) \
  340. STORAGECLASS pth_mutex_t NAME = gl_lock_initializer;
  341. # define gl_lock_initializer \
  342. PTH_MUTEX_INIT
  343. # define gl_lock_init(NAME) \
  344. if (pth_in_use() && !pth_mutex_init (&NAME)) abort ()
  345. # define gl_lock_lock(NAME) \
  346. if (pth_in_use() && !pth_mutex_acquire (&NAME, 0, NULL)) abort ()
  347. # define gl_lock_unlock(NAME) \
  348. if (pth_in_use() && !pth_mutex_release (&NAME)) abort ()
  349. # define gl_lock_destroy(NAME) \
  350. (void)(&NAME)
  351. /* ------------------------- gl_rwlock_t datatype ------------------------- */
  352. typedef pth_rwlock_t gl_rwlock_t;
  353. # define gl_rwlock_define(STORAGECLASS, NAME) \
  354. STORAGECLASS pth_rwlock_t NAME;
  355. # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \
  356. STORAGECLASS pth_rwlock_t NAME = gl_rwlock_initializer;
  357. # define gl_rwlock_initializer \
  358. PTH_RWLOCK_INIT
  359. # define gl_rwlock_init(NAME) \
  360. if (pth_in_use() && !pth_rwlock_init (&NAME)) abort ()
  361. # define gl_rwlock_rdlock(NAME) \
  362. if (pth_in_use() && !pth_rwlock_acquire (&NAME, PTH_RWLOCK_RD, 0, NULL)) abort ()
  363. # define gl_rwlock_wrlock(NAME) \
  364. if (pth_in_use() && !pth_rwlock_acquire (&NAME, PTH_RWLOCK_RW, 0, NULL)) abort ()
  365. # define gl_rwlock_unlock(NAME) \
  366. if (pth_in_use() && !pth_rwlock_release (&NAME)) abort ()
  367. # define gl_rwlock_destroy(NAME) \
  368. (void)(&NAME)
  369. /* --------------------- gl_recursive_lock_t datatype --------------------- */
  370. /* In Pth, mutexes are recursive by default. */
  371. typedef pth_mutex_t gl_recursive_lock_t;
  372. # define gl_recursive_lock_define(STORAGECLASS, NAME) \
  373. STORAGECLASS pth_mutex_t NAME;
  374. # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \
  375. STORAGECLASS pth_mutex_t NAME = gl_recursive_lock_initializer;
  376. # define gl_recursive_lock_initializer \
  377. PTH_MUTEX_INIT
  378. # define gl_recursive_lock_init(NAME) \
  379. if (pth_in_use() && !pth_mutex_init (&NAME)) abort ()
  380. # define gl_recursive_lock_lock(NAME) \
  381. if (pth_in_use() && !pth_mutex_acquire (&NAME, 0, NULL)) abort ()
  382. # define gl_recursive_lock_unlock(NAME) \
  383. if (pth_in_use() && !pth_mutex_release (&NAME)) abort ()
  384. # define gl_recursive_lock_destroy(NAME) \
  385. (void)(&NAME)
  386. /* -------------------------- gl_once_t datatype -------------------------- */
  387. typedef pth_once_t gl_once_t;
  388. # define gl_once_define(STORAGECLASS, NAME) \
  389. STORAGECLASS pth_once_t NAME = PTH_ONCE_INIT;
  390. # define gl_once(NAME, INITFUNCTION) \
  391. do \
  392. { \
  393. if (pth_in_use ()) \
  394. { \
  395. void (*gl_once_temp) (void) = INITFUNCTION; \
  396. if (!pth_once (&NAME, glthread_once_call, &gl_once_temp)) \
  397. abort (); \
  398. } \
  399. else \
  400. { \
  401. if (glthread_once_singlethreaded (&NAME)) \
  402. INITFUNCTION (); \
  403. } \
  404. } \
  405. while (0)
  406. extern void glthread_once_call (void *arg);
  407. extern int glthread_once_singlethreaded (pth_once_t *once_control);
  408. # ifdef __cplusplus
  409. }
  410. # endif
  411. #endif
  412. /* ========================================================================= */
  413. #if USE_SOLARIS_THREADS
  414. /* Use the old Solaris threads library. */
  415. # include <thread.h>
  416. # include <synch.h>
  417. # include <stdlib.h>
  418. # ifdef __cplusplus
  419. extern "C" {
  420. # endif
  421. # if USE_SOLARIS_THREADS_WEAK
  422. /* Use weak references to the old Solaris threads library. */
  423. # pragma weak mutex_init
  424. # pragma weak mutex_lock
  425. # pragma weak mutex_unlock
  426. # pragma weak mutex_destroy
  427. # pragma weak rwlock_init
  428. # pragma weak rw_rdlock
  429. # pragma weak rw_wrlock
  430. # pragma weak rw_unlock
  431. # pragma weak rwlock_destroy
  432. # pragma weak thr_self
  433. # pragma weak thr_suspend
  434. # define thread_in_use() (thr_suspend != NULL)
  435. # else
  436. # define thread_in_use() 1
  437. # endif
  438. /* -------------------------- gl_lock_t datatype -------------------------- */
  439. typedef mutex_t gl_lock_t;
  440. # define gl_lock_define(STORAGECLASS, NAME) \
  441. STORAGECLASS mutex_t NAME;
  442. # define gl_lock_define_initialized(STORAGECLASS, NAME) \
  443. STORAGECLASS mutex_t NAME = gl_lock_initializer;
  444. # define gl_lock_initializer \
  445. DEFAULTMUTEX
  446. # define gl_lock_init(NAME) \
  447. if (thread_in_use () && mutex_init (&NAME, USYNC_THREAD, NULL) != 0) abort ()
  448. # define gl_lock_lock(NAME) \
  449. if (thread_in_use () && mutex_lock (&NAME) != 0) abort ()
  450. # define gl_lock_unlock(NAME) \
  451. if (thread_in_use () && mutex_unlock (&NAME) != 0) abort ()
  452. # define gl_lock_destroy(NAME) \
  453. if (thread_in_use () && mutex_destroy (&NAME) != 0) abort ()
  454. /* ------------------------- gl_rwlock_t datatype ------------------------- */
  455. typedef rwlock_t gl_rwlock_t;
  456. # define gl_rwlock_define(STORAGECLASS, NAME) \
  457. STORAGECLASS rwlock_t NAME;
  458. # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \
  459. STORAGECLASS rwlock_t NAME = gl_rwlock_initializer;
  460. # define gl_rwlock_initializer \
  461. DEFAULTRWLOCK
  462. # define gl_rwlock_init(NAME) \
  463. if (thread_in_use () && rwlock_init (&NAME, USYNC_THREAD, NULL) != 0) abort ()
  464. # define gl_rwlock_rdlock(NAME) \
  465. if (thread_in_use () && rw_rdlock (&NAME) != 0) abort ()
  466. # define gl_rwlock_wrlock(NAME) \
  467. if (thread_in_use () && rw_wrlock (&NAME) != 0) abort ()
  468. # define gl_rwlock_unlock(NAME) \
  469. if (thread_in_use () && rw_unlock (&NAME) != 0) abort ()
  470. # define gl_rwlock_destroy(NAME) \
  471. if (thread_in_use () && rwlock_destroy (&NAME) != 0) abort ()
  472. /* --------------------- gl_recursive_lock_t datatype --------------------- */
  473. /* Old Solaris threads did not have recursive locks.
  474. We have to implement them ourselves. */
  475. typedef struct
  476. {
  477. mutex_t mutex;
  478. thread_t owner;
  479. unsigned long depth;
  480. }
  481. gl_recursive_lock_t;
  482. # define gl_recursive_lock_define(STORAGECLASS, NAME) \
  483. STORAGECLASS gl_recursive_lock_t NAME;
  484. # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \
  485. STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer;
  486. # define gl_recursive_lock_initializer \
  487. { DEFAULTMUTEX, (thread_t) 0, 0 }
  488. # define gl_recursive_lock_init(NAME) \
  489. if (thread_in_use ()) glthread_recursive_lock_init (&NAME)
  490. # define gl_recursive_lock_lock(NAME) \
  491. if (thread_in_use ()) glthread_recursive_lock_lock (&NAME)
  492. # define gl_recursive_lock_unlock(NAME) \
  493. if (thread_in_use ()) glthread_recursive_lock_unlock (&NAME)
  494. # define gl_recursive_lock_destroy(NAME) \
  495. if (thread_in_use ()) glthread_recursive_lock_destroy (&NAME)
  496. extern void glthread_recursive_lock_init (gl_recursive_lock_t *lock);
  497. extern void glthread_recursive_lock_lock (gl_recursive_lock_t *lock);
  498. extern void glthread_recursive_lock_unlock (gl_recursive_lock_t *lock);
  499. extern void glthread_recursive_lock_destroy (gl_recursive_lock_t *lock);
  500. /* -------------------------- gl_once_t datatype -------------------------- */
  501. typedef struct
  502. {
  503. volatile int inited;
  504. mutex_t mutex;
  505. }
  506. gl_once_t;
  507. # define gl_once_define(STORAGECLASS, NAME) \
  508. STORAGECLASS gl_once_t NAME = { 0, DEFAULTMUTEX };
  509. # define gl_once(NAME, INITFUNCTION) \
  510. do \
  511. { \
  512. if (thread_in_use ()) \
  513. { \
  514. glthread_once (&NAME, INITFUNCTION); \
  515. } \
  516. else \
  517. { \
  518. if (glthread_once_singlethreaded (&NAME)) \
  519. INITFUNCTION (); \
  520. } \
  521. } \
  522. while (0)
  523. extern void glthread_once (gl_once_t *once_control, void (*initfunction) (void));
  524. extern int glthread_once_singlethreaded (gl_once_t *once_control);
  525. # ifdef __cplusplus
  526. }
  527. # endif
  528. #endif
  529. /* ========================================================================= */
  530. #if USE_WIN32_THREADS
  531. # include <windows.h>
  532. # ifdef __cplusplus
  533. extern "C" {
  534. # endif
  535. /* We can use CRITICAL_SECTION directly, rather than the Win32 Event, Mutex,
  536. Semaphore types, because
  537. - we need only to synchronize inside a single process (address space),
  538. not inter-process locking,
  539. - we don't need to support trylock operations. (TryEnterCriticalSection
  540. does not work on Windows 95/98/ME. Packages that need trylock usually
  541. define their own mutex type.) */
  542. /* There is no way to statically initialize a CRITICAL_SECTION. It needs
  543. to be done lazily, once only. For this we need spinlocks. */
  544. typedef struct { volatile int done; volatile long started; } gl_spinlock_t;
  545. /* -------------------------- gl_lock_t datatype -------------------------- */
  546. typedef struct
  547. {
  548. gl_spinlock_t guard; /* protects the initialization */
  549. CRITICAL_SECTION lock;
  550. }
  551. gl_lock_t;
  552. # define gl_lock_define(STORAGECLASS, NAME) \
  553. STORAGECLASS gl_lock_t NAME;
  554. # define gl_lock_define_initialized(STORAGECLASS, NAME) \
  555. STORAGECLASS gl_lock_t NAME = gl_lock_initializer;
  556. # define gl_lock_initializer \
  557. { { 0, -1 } }
  558. # define gl_lock_init(NAME) \
  559. glthread_lock_init (&NAME)
  560. # define gl_lock_lock(NAME) \
  561. glthread_lock_lock (&NAME)
  562. # define gl_lock_unlock(NAME) \
  563. glthread_lock_unlock (&NAME)
  564. # define gl_lock_destroy(NAME) \
  565. glthread_lock_destroy (&NAME)
  566. extern void glthread_lock_init (gl_lock_t *lock);
  567. extern void glthread_lock_lock (gl_lock_t *lock);
  568. extern void glthread_lock_unlock (gl_lock_t *lock);
  569. extern void glthread_lock_destroy (gl_lock_t *lock);
  570. /* ------------------------- gl_rwlock_t datatype ------------------------- */
  571. /* It is impossible to implement read-write locks using plain locks, without
  572. introducing an extra thread dedicated to managing read-write locks.
  573. Therefore here we need to use the low-level Event type. */
  574. typedef struct
  575. {
  576. HANDLE *array; /* array of waiting threads, each represented by an event */
  577. unsigned int count; /* number of waiting threads */
  578. unsigned int alloc; /* length of allocated array */
  579. unsigned int offset; /* index of first waiting thread in array */
  580. }
  581. gl_waitqueue_t;
  582. typedef struct
  583. {
  584. gl_spinlock_t guard; /* protects the initialization */
  585. CRITICAL_SECTION lock; /* protects the remaining fields */
  586. gl_waitqueue_t waiting_readers; /* waiting readers */
  587. gl_waitqueue_t waiting_writers; /* waiting writers */
  588. int runcount; /* number of readers running, or -1 when a writer runs */
  589. }
  590. gl_rwlock_t;
  591. # define gl_rwlock_define(STORAGECLASS, NAME) \
  592. STORAGECLASS gl_rwlock_t NAME;
  593. # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \
  594. STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer;
  595. # define gl_rwlock_initializer \
  596. { { 0, -1 } }
  597. # define gl_rwlock_init(NAME) \
  598. glthread_rwlock_init (&NAME)
  599. # define gl_rwlock_rdlock(NAME) \
  600. glthread_rwlock_rdlock (&NAME)
  601. # define gl_rwlock_wrlock(NAME) \
  602. glthread_rwlock_wrlock (&NAME)
  603. # define gl_rwlock_unlock(NAME) \
  604. glthread_rwlock_unlock (&NAME)
  605. # define gl_rwlock_destroy(NAME) \
  606. glthread_rwlock_destroy (&NAME)
  607. extern void glthread_rwlock_init (gl_rwlock_t *lock);
  608. extern void glthread_rwlock_rdlock (gl_rwlock_t *lock);
  609. extern void glthread_rwlock_wrlock (gl_rwlock_t *lock);
  610. extern void glthread_rwlock_unlock (gl_rwlock_t *lock);
  611. extern void glthread_rwlock_destroy (gl_rwlock_t *lock);
  612. /* --------------------- gl_recursive_lock_t datatype --------------------- */
  613. /* The Win32 documentation says that CRITICAL_SECTION already implements a
  614. recursive lock. But we need not rely on it: It's easy to implement a
  615. recursive lock without this assumption. */
  616. typedef struct
  617. {
  618. gl_spinlock_t guard; /* protects the initialization */
  619. DWORD owner;
  620. unsigned long depth;
  621. CRITICAL_SECTION lock;
  622. }
  623. gl_recursive_lock_t;
  624. # define gl_recursive_lock_define(STORAGECLASS, NAME) \
  625. STORAGECLASS gl_recursive_lock_t NAME;
  626. # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \
  627. STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer;
  628. # define gl_recursive_lock_initializer \
  629. { { 0, -1 }, 0, 0 }
  630. # define gl_recursive_lock_init(NAME) \
  631. glthread_recursive_lock_init (&NAME)
  632. # define gl_recursive_lock_lock(NAME) \
  633. glthread_recursive_lock_lock (&NAME)
  634. # define gl_recursive_lock_unlock(NAME) \
  635. glthread_recursive_lock_unlock (&NAME)
  636. # define gl_recursive_lock_destroy(NAME) \
  637. glthread_recursive_lock_destroy (&NAME)
  638. extern void glthread_recursive_lock_init (gl_recursive_lock_t *lock);
  639. extern void glthread_recursive_lock_lock (gl_recursive_lock_t *lock);
  640. extern void glthread_recursive_lock_unlock (gl_recursive_lock_t *lock);
  641. extern void glthread_recursive_lock_destroy (gl_recursive_lock_t *lock);
  642. /* -------------------------- gl_once_t datatype -------------------------- */
  643. typedef struct
  644. {
  645. volatile int inited;
  646. volatile long started;
  647. CRITICAL_SECTION lock;
  648. }
  649. gl_once_t;
  650. # define gl_once_define(STORAGECLASS, NAME) \
  651. STORAGECLASS gl_once_t NAME = { -1, -1 };
  652. # define gl_once(NAME, INITFUNCTION) \
  653. glthread_once (&NAME, INITFUNCTION)
  654. extern void glthread_once (gl_once_t *once_control, void (*initfunction) (void));
  655. # ifdef __cplusplus
  656. }
  657. # endif
  658. #endif
  659. /* ========================================================================= */
  660. #if !(USE_POSIX_THREADS || USE_PTH_THREADS || USE_SOLARIS_THREADS || USE_WIN32_THREADS)
  661. /* Provide dummy implementation if threads are not supported. */
  662. /* -------------------------- gl_lock_t datatype -------------------------- */
  663. typedef int gl_lock_t;
  664. # define gl_lock_define(STORAGECLASS, NAME)
  665. # define gl_lock_define_initialized(STORAGECLASS, NAME)
  666. # define gl_lock_init(NAME)
  667. # define gl_lock_lock(NAME)
  668. # define gl_lock_unlock(NAME)
  669. /* ------------------------- gl_rwlock_t datatype ------------------------- */
  670. typedef int gl_rwlock_t;
  671. # define gl_rwlock_define(STORAGECLASS, NAME)
  672. # define gl_rwlock_define_initialized(STORAGECLASS, NAME)
  673. # define gl_rwlock_init(NAME)
  674. # define gl_rwlock_rdlock(NAME)
  675. # define gl_rwlock_wrlock(NAME)
  676. # define gl_rwlock_unlock(NAME)
  677. /* --------------------- gl_recursive_lock_t datatype --------------------- */
  678. typedef int gl_recursive_lock_t;
  679. # define gl_recursive_lock_define(STORAGECLASS, NAME)
  680. # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME)
  681. # define gl_recursive_lock_init(NAME)
  682. # define gl_recursive_lock_lock(NAME)
  683. # define gl_recursive_lock_unlock(NAME)
  684. /* -------------------------- gl_once_t datatype -------------------------- */
  685. typedef int gl_once_t;
  686. # define gl_once_define(STORAGECLASS, NAME) \
  687. STORAGECLASS gl_once_t NAME = 0;
  688. # define gl_once(NAME, INITFUNCTION) \
  689. do \
  690. { \
  691. if (NAME == 0) \
  692. { \
  693. NAME = ~ 0; \
  694. INITFUNCTION (); \
  695. } \
  696. } \
  697. while (0)
  698. #endif
  699. /* ========================================================================= */
  700. #endif /* _LOCK_H */