libc-lock.h 15 KB

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