libc-lock.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. /* libc-internal interface for mutex locks. LinuxThreads version.
  2. Copyright (C) 1996,1997,1998,1999,2000,2001,2002,2003,2006
  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/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 struct { pthread_mutex_t mutex; } __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 a recursive mutex. */
  117. #if defined _LIBC && !defined NOT_IN_libc && defined SHARED
  118. #define __libc_lock_init_recursive(NAME) \
  119. ({ \
  120. (NAME).mutex.__m_count = 0; \
  121. (NAME).mutex.__m_owner = NULL; \
  122. (NAME).mutex.__m_kind = PTHREAD_MUTEX_RECURSIVE_NP; \
  123. (NAME).mutex.__m_lock.__status = 0; \
  124. (NAME).mutex.__m_lock.__spinlock = __LT_SPINLOCK_INIT; \
  125. 0; })
  126. #else
  127. #define __libc_lock_init_recursive(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_RECURSIVE_NP); \
  134. __pthread_mutex_init (&(NAME).mutex, &__attr); \
  135. __pthread_mutexattr_destroy (&__attr); \
  136. } \
  137. } while (0);
  138. #endif
  139. #define __rtld_lock_init_recursive(NAME) \
  140. __libc_lock_init_recursive (NAME)
  141. /* Finalize the named lock variable, which must be locked. It cannot be
  142. used again until __libc_lock_init is called again on it. This must be
  143. called on a lock variable before the containing storage is reused. */
  144. #define __libc_lock_fini(NAME) \
  145. (__libc_maybe_call2 (pthread_mutex_destroy, (&(NAME)), 0));
  146. #define __libc_rwlock_fini(NAME) \
  147. (__libc_maybe_call (__pthread_rwlock_destroy, (&(NAME)), 0));
  148. /* Finalize recursive named lock. */
  149. #define __libc_lock_fini_recursive(NAME) __libc_lock_fini ((NAME).mutex)
  150. #define __rtld_lock_fini_recursive(NAME) __libc_lock_fini_recursive (NAME)
  151. /* Lock the named lock variable. */
  152. #define __libc_lock_lock(NAME) \
  153. (__libc_maybe_call2 (pthread_mutex_lock, (&(NAME)), 0));
  154. #define __libc_rwlock_rdlock(NAME) \
  155. (__libc_maybe_call (__pthread_rwlock_rdlock, (&(NAME)), 0));
  156. #define __libc_rwlock_wrlock(NAME) \
  157. (__libc_maybe_call (__pthread_rwlock_wrlock, (&(NAME)), 0));
  158. /* Lock the recursive named lock variable. */
  159. #define __libc_lock_lock_recursive(NAME) __libc_lock_lock ((NAME).mutex)
  160. /* Try to lock the named lock variable. */
  161. #define __libc_lock_trylock(NAME) \
  162. (__libc_maybe_call2 (pthread_mutex_trylock, (&(NAME)), 0))
  163. #define __libc_rwlock_tryrdlock(NAME) \
  164. (__libc_maybe_call (__pthread_rwlock_tryrdlock, (&(NAME)), 0))
  165. #define __libc_rwlock_trywrlock(NAME) \
  166. (__libc_maybe_call (__pthread_rwlock_trywrlock, (&(NAME)), 0))
  167. /* Try to lock the recursive named lock variable. */
  168. #define __libc_lock_trylock_recursive(NAME) __libc_lock_trylock ((NAME).mutex)
  169. #define __rtld_lock_trylock_recursive(NAME) \
  170. __libc_lock_trylock_recursive (NAME)
  171. /* Unlock the named lock variable. */
  172. #define __libc_lock_unlock(NAME) \
  173. (__libc_maybe_call2 (pthread_mutex_unlock, (&(NAME)), 0));
  174. #define __libc_rwlock_unlock(NAME) \
  175. (__libc_maybe_call (__pthread_rwlock_unlock, (&(NAME)), 0));
  176. /* Unlock the recursive named lock variable. */
  177. #define __libc_lock_unlock_recursive(NAME) __libc_lock_unlock ((NAME).mutex)
  178. #if defined _LIBC && defined SHARED
  179. # define __rtld_lock_default_lock_recursive(lock) \
  180. ++((pthread_mutex_t *)(lock))->__m_count;
  181. # define __rtld_lock_default_unlock_recursive(lock) \
  182. --((pthread_mutex_t *)(lock))->__m_count;
  183. # define __rtld_lock_lock_recursive(NAME) \
  184. GL(dl_rtld_lock_recursive) (&(NAME).mutex)
  185. # define __rtld_lock_unlock_recursive(NAME) \
  186. GL(dl_rtld_unlock_recursive) (&(NAME).mutex)
  187. #else
  188. #define __rtld_lock_lock_recursive(NAME) __libc_lock_lock_recursive (NAME)
  189. #define __rtld_lock_unlock_recursive(NAME) __libc_lock_unlock_recursive (NAME)
  190. #endif
  191. /* Define once control variable. */
  192. #if PTHREAD_ONCE_INIT == 0
  193. /* Special case for static variables where we can avoid the initialization
  194. if it is zero. */
  195. # define __libc_once_define(CLASS, NAME) \
  196. CLASS pthread_once_t NAME
  197. #else
  198. # define __libc_once_define(CLASS, NAME) \
  199. CLASS pthread_once_t NAME = PTHREAD_ONCE_INIT
  200. #endif
  201. /* Call handler iff the first call. */
  202. #define __libc_once(ONCE_CONTROL, INIT_FUNCTION) \
  203. do { \
  204. if (__pthread_once != NULL) \
  205. __pthread_once (&(ONCE_CONTROL), (INIT_FUNCTION)); \
  206. else if ((ONCE_CONTROL) == PTHREAD_ONCE_INIT) { \
  207. INIT_FUNCTION (); \
  208. (ONCE_CONTROL) = 2; \
  209. } \
  210. } while (0)
  211. /* Start critical region with cleanup. */
  212. #define __libc_cleanup_region_start(DOIT, FCT, ARG) \
  213. { struct _pthread_cleanup_buffer _buffer; \
  214. int _avail = (DOIT) && _pthread_cleanup_push_defer != NULL; \
  215. if (_avail) { \
  216. _pthread_cleanup_push_defer (&_buffer, (FCT), (ARG)); \
  217. }
  218. /* End critical region with cleanup. */
  219. #define __libc_cleanup_region_end(DOIT) \
  220. if (_avail) { \
  221. _pthread_cleanup_pop_restore (&_buffer, (DOIT)); \
  222. } \
  223. }
  224. /* Sometimes we have to exit the block in the middle. */
  225. #define __libc_cleanup_end(DOIT) \
  226. if (_avail) { \
  227. _pthread_cleanup_pop_restore (&_buffer, (DOIT)); \
  228. }
  229. #define __libc_cleanup_push(fct, arg) \
  230. { struct _pthread_cleanup_buffer _buffer; \
  231. __libc_maybe_call (_pthread_cleanup_push, (&_buffer, (fct), (arg)), 0)
  232. #define __libc_cleanup_pop(execute) \
  233. __libc_maybe_call (_pthread_cleanup_pop, (&_buffer, execute), 0); \
  234. }
  235. /* Create thread-specific key. */
  236. #define __libc_key_create(KEY, DESTRUCTOR) \
  237. (__libc_maybe_call (__pthread_key_create, (KEY, DESTRUCTOR), 1))
  238. /* Get thread-specific data. */
  239. #define __libc_getspecific(KEY) \
  240. (__libc_maybe_call (__pthread_getspecific, (KEY), NULL))
  241. /* Set thread-specific data. */
  242. #define __libc_setspecific(KEY, VALUE) \
  243. (__libc_maybe_call (__pthread_setspecific, (KEY, VALUE), 0))
  244. /* Register handlers to execute before and after `fork'. */
  245. #define __libc_atfork(PREPARE, PARENT, CHILD) \
  246. (__libc_maybe_call (__pthread_atfork, (PREPARE, PARENT, CHILD), 0))
  247. /* Functions that are used by this file and are internal to the GNU C
  248. library. */
  249. extern int __pthread_mutex_init (pthread_mutex_t *__mutex,
  250. const pthread_mutexattr_t *__mutex_attr);
  251. extern int __pthread_mutex_destroy (pthread_mutex_t *__mutex);
  252. extern int __pthread_mutex_trylock (pthread_mutex_t *__mutex);
  253. extern int __pthread_mutex_lock (pthread_mutex_t *__mutex);
  254. extern int __pthread_mutex_unlock (pthread_mutex_t *__mutex);
  255. extern int __pthread_mutexattr_init (pthread_mutexattr_t *__attr);
  256. extern int __pthread_mutexattr_destroy (pthread_mutexattr_t *__attr);
  257. extern int __pthread_mutexattr_settype (pthread_mutexattr_t *__attr,
  258. int __kind);
  259. #ifdef __USE_UNIX98
  260. extern int __pthread_rwlock_init (pthread_rwlock_t *__rwlock,
  261. const pthread_rwlockattr_t *__attr);
  262. extern int __pthread_rwlock_destroy (pthread_rwlock_t *__rwlock);
  263. extern int __pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock);
  264. extern int __pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock);
  265. extern int __pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock);
  266. extern int __pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock);
  267. extern int __pthread_rwlock_unlock (pthread_rwlock_t *__rwlock);
  268. #endif
  269. extern int __pthread_key_create (pthread_key_t *__key,
  270. void (*__destr_function) (void *));
  271. extern int __pthread_setspecific (pthread_key_t __key,
  272. const void *__pointer);
  273. extern void *__pthread_getspecific (pthread_key_t __key);
  274. extern int __pthread_once (pthread_once_t *__once_control,
  275. void (*__init_routine) (void));
  276. extern int __pthread_atfork (void (*__prepare) (void),
  277. void (*__parent) (void),
  278. void (*__child) (void));
  279. /* Make the pthread functions weak so that we can elide them from
  280. single-threaded processes. */
  281. #ifndef __NO_WEAK_PTHREAD_ALIASES
  282. # ifdef weak_extern
  283. # define BP_SYM(sym) sym
  284. weak_extern (BP_SYM (__pthread_mutex_init))
  285. weak_extern (BP_SYM (__pthread_mutex_destroy))
  286. weak_extern (BP_SYM (__pthread_mutex_lock))
  287. weak_extern (BP_SYM (__pthread_mutex_trylock))
  288. weak_extern (BP_SYM (__pthread_mutex_unlock))
  289. weak_extern (BP_SYM (__pthread_mutexattr_init))
  290. weak_extern (BP_SYM (__pthread_mutexattr_destroy))
  291. weak_extern (BP_SYM (__pthread_mutexattr_settype))
  292. weak_extern (BP_SYM (__pthread_rwlock_init))
  293. weak_extern (BP_SYM (__pthread_rwlock_destroy))
  294. weak_extern (BP_SYM (__pthread_rwlock_rdlock))
  295. weak_extern (BP_SYM (__pthread_rwlock_tryrdlock))
  296. weak_extern (BP_SYM (__pthread_rwlock_wrlock))
  297. weak_extern (BP_SYM (__pthread_rwlock_trywrlock))
  298. weak_extern (BP_SYM (__pthread_rwlock_unlock))
  299. weak_extern (BP_SYM (__pthread_key_create))
  300. weak_extern (BP_SYM (__pthread_setspecific))
  301. weak_extern (BP_SYM (__pthread_getspecific))
  302. weak_extern (BP_SYM (__pthread_once))
  303. weak_extern (__pthread_initialize)
  304. weak_extern (__pthread_atfork)
  305. weak_extern (BP_SYM (_pthread_cleanup_push))
  306. weak_extern (BP_SYM (_pthread_cleanup_pop))
  307. weak_extern (BP_SYM (_pthread_cleanup_push_defer))
  308. weak_extern (BP_SYM (_pthread_cleanup_pop_restore))
  309. # else
  310. # pragma weak __pthread_mutex_init
  311. # pragma weak __pthread_mutex_destroy
  312. # pragma weak __pthread_mutex_lock
  313. # pragma weak __pthread_mutex_trylock
  314. # pragma weak __pthread_mutex_unlock
  315. # pragma weak __pthread_mutexattr_init
  316. # pragma weak __pthread_mutexattr_destroy
  317. # pragma weak __pthread_mutexattr_settype
  318. # pragma weak __pthread_rwlock_destroy
  319. # pragma weak __pthread_rwlock_rdlock
  320. # pragma weak __pthread_rwlock_tryrdlock
  321. # pragma weak __pthread_rwlock_wrlock
  322. # pragma weak __pthread_rwlock_trywrlock
  323. # pragma weak __pthread_rwlock_unlock
  324. # pragma weak __pthread_key_create
  325. # pragma weak __pthread_setspecific
  326. # pragma weak __pthread_getspecific
  327. # pragma weak __pthread_once
  328. # pragma weak __pthread_initialize
  329. # pragma weak __pthread_atfork
  330. # pragma weak _pthread_cleanup_push_defer
  331. # pragma weak _pthread_cleanup_pop_restore
  332. # pragma weak _pthread_cleanup_push
  333. # pragma weak _pthread_cleanup_pop
  334. # endif
  335. #endif
  336. /* We need portable names for some functions. E.g., when they are
  337. used as argument to __libc_cleanup_region_start. */
  338. #define __libc_mutex_unlock __pthread_mutex_unlock
  339. #endif /* bits/libc-lock.h */