libc-lock.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. /* libc-internal interface for mutex locks. LinuxThreads version.
  2. Copyright (C) 1996,1997,1998,1999,2000,2001,2002,2003
  3. Free Software Foundation, Inc.
  4. This file is part of the GNU C Library.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public License as
  7. published by the Free Software Foundation; either version 2.1 of the
  8. License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; see the file COPYING.LIB. If
  15. not, see <http://www.gnu.org/licenses/>. */
  16. #ifndef _BITS_LIBC_LOCK_H
  17. #define _BITS_LIBC_LOCK_H 1
  18. #include <pthread.h>
  19. #if defined _LIBC && !defined NOT_IN_libc
  20. #include <linuxthreads.old/internals.h>
  21. #endif
  22. /* Mutex type. */
  23. #if defined(_LIBC) || defined(_IO_MTSAFE_IO)
  24. typedef pthread_mutex_t __libc_lock_t;
  25. typedef pthread_mutex_t __libc_lock_recursive_t;
  26. # ifdef __USE_UNIX98
  27. typedef pthread_rwlock_t __libc_rwlock_t;
  28. # else
  29. typedef struct __libc_rwlock_opaque__ __libc_rwlock_t;
  30. # endif
  31. typedef __libc_lock_recursive_t __rtld_lock_recursive_t;
  32. #else
  33. typedef struct __libc_lock_opaque__ __libc_lock_t;
  34. typedef struct __libc_lock_recursive_opaque__ __libc_lock_recursive_t;
  35. typedef struct __libc_rwlock_opaque__ __libc_rwlock_t;
  36. #endif
  37. /* Type for key to thread-specific data. */
  38. typedef pthread_key_t __libc_key_t;
  39. /* Define a lock variable NAME with storage class CLASS. The lock must be
  40. initialized with __libc_lock_init before it can be used (or define it
  41. with __libc_lock_define_initialized, below). Use `extern' for CLASS to
  42. declare a lock defined in another module. In public structure
  43. definitions you must use a pointer to the lock structure (i.e., NAME
  44. begins with a `*'), because its storage size will not be known outside
  45. of libc. */
  46. #define __libc_lock_define(CLASS,NAME) \
  47. CLASS __libc_lock_t NAME;
  48. #define __libc_rwlock_define(CLASS,NAME) \
  49. CLASS __libc_rwlock_t NAME;
  50. #define __libc_lock_define_recursive(CLASS,NAME) \
  51. CLASS __libc_lock_recursive_t NAME;
  52. #define __rtld_lock_define_recursive(CLASS,NAME) \
  53. CLASS __rtld_lock_recursive_t NAME;
  54. /* Define an initialized lock variable NAME with storage class CLASS.
  55. For the C library we take a deeper look at the initializer. For
  56. this implementation all fields are initialized to zero. Therefore
  57. we don't initialize the variable which allows putting it into the
  58. BSS section. (Except on PA-RISC and other odd architectures, where
  59. initialized locks must be set to one due to the lack of normal
  60. atomic operations.) */
  61. #if __LT_SPINLOCK_INIT == 0
  62. # define __libc_lock_define_initialized(CLASS,NAME) \
  63. CLASS __libc_lock_t NAME;
  64. #else
  65. # define __libc_lock_define_initialized(CLASS,NAME) \
  66. CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER;
  67. #endif
  68. #define __libc_rwlock_define_initialized(CLASS,NAME) \
  69. CLASS __libc_rwlock_t NAME = PTHREAD_RWLOCK_INITIALIZER;
  70. /* Define an initialized recursive lock variable NAME with storage
  71. class CLASS. */
  72. #define __libc_lock_define_initialized_recursive(CLASS,NAME) \
  73. CLASS __libc_lock_recursive_t NAME = _LIBC_LOCK_RECURSIVE_INITIALIZER;
  74. #define _LIBC_LOCK_RECURSIVE_INITIALIZER \
  75. {PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP}
  76. #define __rtld_lock_define_initialized_recursive(CLASS,NAME) \
  77. CLASS __rtld_lock_recursive_t NAME = _RTLD_LOCK_RECURSIVE_INITIALIZER;
  78. #define _RTLD_LOCK_RECURSIVE_INITIALIZER \
  79. {PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP}
  80. #if defined _LIBC && defined IS_IN_libpthread
  81. # define __libc_maybe_call(FUNC, ARGS, ELSE) FUNC ARGS
  82. #else
  83. # if defined __PIC__ || (defined _LIBC && defined SHARED)
  84. # define __libc_maybe_call(FUNC, ARGS, ELSE) \
  85. (__extension__ ({ __typeof (FUNC) *_fn = (FUNC); \
  86. _fn != NULL ? (*_fn) ARGS : ELSE; }))
  87. # else
  88. # define __libc_maybe_call(FUNC, ARGS, ELSE) \
  89. (FUNC != NULL ? FUNC ARGS : ELSE)
  90. # endif
  91. #endif
  92. #if defined _LIBC && !defined NOT_IN_libc && defined SHARED
  93. # define __libc_maybe_call2(FUNC, ARGS, ELSE) \
  94. ({__builtin_expect (__libc_pthread_functions.ptr_##FUNC != NULL, 0) \
  95. ? __libc_pthread_functions.ptr_##FUNC ARGS : ELSE; })
  96. #else
  97. # define __libc_maybe_call2(FUNC, ARGS, ELSE) __libc_maybe_call (__##FUNC, ARGS, ELSE)
  98. #endif
  99. /* Initialize the named lock variable, leaving it in a consistent, unlocked
  100. state. */
  101. #if defined _LIBC && !defined NOT_IN_libc && defined SHARED
  102. #define __libc_lock_init(NAME) \
  103. ({ \
  104. (NAME).__m_count = 0; \
  105. (NAME).__m_owner = NULL; \
  106. (NAME).__m_kind = PTHREAD_MUTEX_TIMED_NP; \
  107. (NAME).__m_lock.__status = 0; \
  108. (NAME).__m_lock.__spinlock = __LT_SPINLOCK_INIT; \
  109. 0; })
  110. #else
  111. #define __libc_lock_init(NAME) \
  112. (__libc_maybe_call2 (pthread_mutex_init, (&(NAME), NULL), 0))
  113. #endif
  114. #define __libc_rwlock_init(NAME) \
  115. (__libc_maybe_call (__pthread_rwlock_init, (&(NAME), NULL), 0));
  116. /* Same as last but this time we initialize an adaptive mutex. */
  117. #if defined _LIBC && !defined NOT_IN_libc && defined SHARED
  118. #define __libc_lock_init_adaptive(NAME) \
  119. ({ \
  120. (NAME).__m_count = 0; \
  121. (NAME).__m_owner = NULL; \
  122. (NAME).__m_kind = PTHREAD_MUTEX_ADAPTIVE_NP; \
  123. (NAME).__m_lock.__status = 0; \
  124. (NAME).__m_lock.__spinlock = __LT_SPINLOCK_INIT; \
  125. 0; })
  126. #else
  127. #define __libc_lock_init_adaptive(NAME) \
  128. do { \
  129. if (__pthread_mutex_init != NULL) \
  130. { \
  131. pthread_mutexattr_t __attr; \
  132. __pthread_mutexattr_init (&__attr); \
  133. __pthread_mutexattr_settype (&__attr, PTHREAD_MUTEX_ADAPTIVE_NP); \
  134. __pthread_mutex_init (&(NAME), &__attr); \
  135. __pthread_mutexattr_destroy (&__attr); \
  136. } \
  137. } while (0);
  138. #endif
  139. /* Same as last but this time we initialize a recursive mutex. */
  140. #if defined _LIBC && !defined NOT_IN_libc && defined SHARED
  141. #define __libc_lock_init_recursive(NAME) \
  142. ({ \
  143. (NAME).__m_count = 0; \
  144. (NAME).__m_owner = NULL; \
  145. (NAME).__m_kind = PTHREAD_MUTEX_RECURSIVE_NP; \
  146. (NAME).__m_lock.__status = 0; \
  147. (NAME).__m_lock.__spinlock = __LT_SPINLOCK_INIT; \
  148. 0; })
  149. #else
  150. #define __libc_lock_init_recursive(NAME) \
  151. do { \
  152. if (__pthread_mutex_init != NULL) \
  153. { \
  154. pthread_mutexattr_t __attr; \
  155. __pthread_mutexattr_init (&__attr); \
  156. __pthread_mutexattr_settype (&__attr, PTHREAD_MUTEX_RECURSIVE_NP); \
  157. __pthread_mutex_init (&(NAME), &__attr); \
  158. __pthread_mutexattr_destroy (&__attr); \
  159. } \
  160. } while (0);
  161. #endif
  162. #define __rtld_lock_init_recursive(NAME) \
  163. __libc_lock_init_recursive (NAME)
  164. /* Finalize the named lock variable, which must be locked. It cannot be
  165. used again until __libc_lock_init is called again on it. This must be
  166. called on a lock variable before the containing storage is reused. */
  167. #define __libc_lock_fini(NAME) \
  168. (__libc_maybe_call2 (pthread_mutex_destroy, (&(NAME)), 0));
  169. #define __libc_rwlock_fini(NAME) \
  170. (__libc_maybe_call (__pthread_rwlock_destroy, (&(NAME)), 0));
  171. /* Finalize recursive named lock. */
  172. #define __libc_lock_fini_recursive(NAME) __libc_lock_fini ((NAME).mutex)
  173. #define __rtld_lock_fini_recursive(NAME) __libc_lock_fini_recursive (NAME)
  174. /* Lock the named lock variable. */
  175. #define __libc_lock_lock(NAME) \
  176. (__libc_maybe_call2 (pthread_mutex_lock, (&(NAME)), 0));
  177. #define __libc_rwlock_rdlock(NAME) \
  178. (__libc_maybe_call (__pthread_rwlock_rdlock, (&(NAME)), 0));
  179. #define __libc_rwlock_wrlock(NAME) \
  180. (__libc_maybe_call (__pthread_rwlock_wrlock, (&(NAME)), 0));
  181. /* Lock the recursive named lock variable. */
  182. #define __libc_lock_lock_recursive(NAME) __libc_lock_lock ((NAME).mutex)
  183. /* Try to lock the named lock variable. */
  184. #define __libc_lock_trylock(NAME) \
  185. (__libc_maybe_call2 (pthread_mutex_trylock, (&(NAME)), 0))
  186. #define __libc_rwlock_tryrdlock(NAME) \
  187. (__libc_maybe_call (__pthread_rwlock_tryrdlock, (&(NAME)), 0))
  188. #define __libc_rwlock_trywrlock(NAME) \
  189. (__libc_maybe_call (__pthread_rwlock_trywrlock, (&(NAME)), 0))
  190. /* Try to lock the recursive named lock variable. */
  191. #define __libc_lock_trylock_recursive(NAME) __libc_lock_trylock ((NAME).mutex)
  192. #define __rtld_lock_trylock_recursive(NAME) \
  193. __libc_lock_trylock_recursive (NAME)
  194. /* Unlock the named lock variable. */
  195. #define __libc_lock_unlock(NAME) \
  196. (__libc_maybe_call2 (pthread_mutex_unlock, (&(NAME)), 0));
  197. #define __libc_rwlock_unlock(NAME) \
  198. (__libc_maybe_call (__pthread_rwlock_unlock, (&(NAME)), 0));
  199. /* Unlock the recursive named lock variable. */
  200. #define __libc_lock_unlock_recursive(NAME) __libc_lock_unlock ((NAME).mutex)
  201. /* Define once control variable. */
  202. #if PTHREAD_ONCE_INIT == 0
  203. /* Special case for static variables where we can avoid the initialization
  204. if it is zero. */
  205. # define __libc_once_define(CLASS, NAME) \
  206. CLASS pthread_once_t NAME
  207. #else
  208. # define __libc_once_define(CLASS, NAME) \
  209. CLASS pthread_once_t NAME = PTHREAD_ONCE_INIT
  210. #endif
  211. /* Call handler iff the first call. */
  212. #define __libc_once(ONCE_CONTROL, INIT_FUNCTION) \
  213. do { \
  214. if (__pthread_once != NULL) \
  215. __pthread_once (&(ONCE_CONTROL), (INIT_FUNCTION)); \
  216. else if ((ONCE_CONTROL) == PTHREAD_ONCE_INIT) { \
  217. INIT_FUNCTION (); \
  218. (ONCE_CONTROL) = !PTHREAD_ONCE_INIT; \
  219. } \
  220. } while (0)
  221. /* Start critical region with cleanup. */
  222. #define __libc_cleanup_region_start(DOIT, FCT, ARG) \
  223. { struct _pthread_cleanup_buffer _buffer; \
  224. int _avail = (DOIT) && _pthread_cleanup_push_defer != NULL; \
  225. if (_avail) { \
  226. _pthread_cleanup_push_defer (&_buffer, (FCT), (ARG)); \
  227. }
  228. /* End critical region with cleanup. */
  229. #define __libc_cleanup_region_end(DOIT) \
  230. if (_avail) { \
  231. _pthread_cleanup_pop_restore (&_buffer, (DOIT)); \
  232. } \
  233. }
  234. /* Sometimes we have to exit the block in the middle. */
  235. #define __libc_cleanup_end(DOIT) \
  236. if (_avail) { \
  237. _pthread_cleanup_pop_restore (&_buffer, (DOIT)); \
  238. }
  239. #if 0
  240. #define __libc_cleanup_push(fct, arg) \
  241. { struct _pthread_cleanup_buffer _buffer; \
  242. __libc_maybe_call (_pthread_cleanup_push, (&_buffer, (fct), (arg)), 0)
  243. #define __libc_cleanup_pop(execute) \
  244. __libc_maybe_call (_pthread_cleanup_pop, (&_buffer, execute), 0); \
  245. }
  246. #endif
  247. /* Create thread-specific key. */
  248. #define __libc_key_create(KEY, DESTRUCTOR) \
  249. (__libc_maybe_call (__pthread_key_create, (KEY, DESTRUCTOR), 1))
  250. /* Get thread-specific data. */
  251. #define __libc_getspecific(KEY) \
  252. (__libc_maybe_call (__pthread_getspecific, (KEY), NULL))
  253. /* Set thread-specific data. */
  254. #define __libc_setspecific(KEY, VALUE) \
  255. (__libc_maybe_call (__pthread_setspecific, (KEY, VALUE), 0))
  256. /* Register handlers to execute before and after `fork'. */
  257. #define __libc_atfork(PREPARE, PARENT, CHILD) \
  258. (__libc_maybe_call (__pthread_atfork, (PREPARE, PARENT, CHILD), 0))
  259. /* Functions that are used by this file and are internal to the GNU C
  260. library. */
  261. extern int __pthread_mutex_init (pthread_mutex_t *__mutex,
  262. const pthread_mutexattr_t *__mutex_attr);
  263. extern int __pthread_mutex_destroy (pthread_mutex_t *__mutex);
  264. extern int __pthread_mutex_trylock (pthread_mutex_t *__mutex);
  265. extern int __pthread_mutex_lock (pthread_mutex_t *__mutex);
  266. extern int __pthread_mutex_unlock (pthread_mutex_t *__mutex);
  267. extern int __pthread_mutexattr_init (pthread_mutexattr_t *__attr);
  268. extern int __pthread_mutexattr_destroy (pthread_mutexattr_t *__attr);
  269. extern int __pthread_mutexattr_settype (pthread_mutexattr_t *__attr,
  270. int __kind);
  271. #ifdef __USE_UNIX98
  272. extern int __pthread_rwlock_init (pthread_rwlock_t *__rwlock,
  273. const pthread_rwlockattr_t *__attr);
  274. extern int __pthread_rwlock_destroy (pthread_rwlock_t *__rwlock);
  275. extern int __pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock);
  276. extern int __pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock);
  277. extern int __pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock);
  278. extern int __pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock);
  279. extern int __pthread_rwlock_unlock (pthread_rwlock_t *__rwlock);
  280. #endif
  281. extern int __pthread_key_create (pthread_key_t *__key,
  282. void (*__destr_function) (void *));
  283. extern int __pthread_setspecific (pthread_key_t __key,
  284. const void *__pointer);
  285. extern void *__pthread_getspecific (pthread_key_t __key);
  286. extern int __pthread_once (pthread_once_t *__once_control,
  287. void (*__init_routine) (void));
  288. extern int __pthread_atfork (void (*__prepare) (void),
  289. void (*__parent) (void),
  290. void (*__child) (void));
  291. /* Make the pthread functions weak so that we can elide them from
  292. single-threaded processes. */
  293. #ifndef __NO_WEAK_PTHREAD_ALIASES
  294. # ifdef weak_extern
  295. # define BP_SYM(sym) sym
  296. weak_extern (BP_SYM (__pthread_mutex_init))
  297. weak_extern (BP_SYM (__pthread_mutex_destroy))
  298. weak_extern (BP_SYM (__pthread_mutex_lock))
  299. weak_extern (BP_SYM (__pthread_mutex_trylock))
  300. weak_extern (BP_SYM (__pthread_mutex_unlock))
  301. weak_extern (BP_SYM (__pthread_mutexattr_init))
  302. weak_extern (BP_SYM (__pthread_mutexattr_destroy))
  303. weak_extern (BP_SYM (__pthread_mutexattr_settype))
  304. weak_extern (BP_SYM (__pthread_rwlock_init))
  305. weak_extern (BP_SYM (__pthread_rwlock_destroy))
  306. weak_extern (BP_SYM (__pthread_rwlock_rdlock))
  307. weak_extern (BP_SYM (__pthread_rwlock_tryrdlock))
  308. weak_extern (BP_SYM (__pthread_rwlock_wrlock))
  309. weak_extern (BP_SYM (__pthread_rwlock_trywrlock))
  310. weak_extern (BP_SYM (__pthread_rwlock_unlock))
  311. weak_extern (BP_SYM (__pthread_key_create))
  312. weak_extern (BP_SYM (__pthread_setspecific))
  313. weak_extern (BP_SYM (__pthread_getspecific))
  314. weak_extern (BP_SYM (__pthread_once))
  315. weak_extern (__pthread_atfork)
  316. weak_extern (BP_SYM (_pthread_cleanup_push))
  317. weak_extern (BP_SYM (_pthread_cleanup_pop))
  318. weak_extern (BP_SYM (_pthread_cleanup_push_defer))
  319. weak_extern (BP_SYM (_pthread_cleanup_pop_restore))
  320. # else
  321. # pragma weak __pthread_mutex_init
  322. # pragma weak __pthread_mutex_destroy
  323. # pragma weak __pthread_mutex_lock
  324. # pragma weak __pthread_mutex_trylock
  325. # pragma weak __pthread_mutex_unlock
  326. # pragma weak __pthread_mutexattr_init
  327. # pragma weak __pthread_mutexattr_destroy
  328. # pragma weak __pthread_mutexattr_settype
  329. # pragma weak __pthread_rwlock_destroy
  330. # pragma weak __pthread_rwlock_rdlock
  331. # pragma weak __pthread_rwlock_tryrdlock
  332. # pragma weak __pthread_rwlock_wrlock
  333. # pragma weak __pthread_rwlock_trywrlock
  334. # pragma weak __pthread_rwlock_unlock
  335. # pragma weak __pthread_key_create
  336. # pragma weak __pthread_setspecific
  337. # pragma weak __pthread_getspecific
  338. # pragma weak __pthread_once
  339. # pragma weak __pthread_atfork
  340. # pragma weak _pthread_cleanup_push_defer
  341. # pragma weak _pthread_cleanup_pop_restore
  342. # pragma weak _pthread_cleanup_push
  343. # pragma weak _pthread_cleanup_pop
  344. # endif
  345. #endif
  346. /* We need portable names for some functions. E.g., when they are
  347. used as argument to __libc_cleanup_region_start. */
  348. #define __libc_mutex_unlock __pthread_mutex_unlock
  349. #endif /* bits/libc-lock.h */