pthreadP.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. /* Copyright (C) 2002-2007, 2009 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _PTHREADP_H
  16. #define _PTHREADP_H 1
  17. #include <pthread.h>
  18. #include <setjmp.h>
  19. #include <stdbool.h>
  20. #include <sys/syscall.h>
  21. #include "descr.h"
  22. #include <tls.h>
  23. #include <lowlevellock.h>
  24. #include <bits/stackinfo.h>
  25. #include <internaltypes.h>
  26. #include <pthread-functions.h>
  27. #include <atomic.h>
  28. #include <bits/kernel-features.h>
  29. /* Atomic operations on TLS memory. */
  30. #ifndef THREAD_ATOMIC_CMPXCHG_VAL
  31. # define THREAD_ATOMIC_CMPXCHG_VAL(descr, member, new, old) \
  32. atomic_compare_and_exchange_val_acq (&(descr)->member, new, old)
  33. #endif
  34. #ifndef THREAD_ATOMIC_BIT_SET
  35. # define THREAD_ATOMIC_BIT_SET(descr, member, bit) \
  36. atomic_bit_set (&(descr)->member, bit)
  37. #endif
  38. /* Adaptive mutex definitions. */
  39. #ifndef MAX_ADAPTIVE_COUNT
  40. # define MAX_ADAPTIVE_COUNT 100
  41. #endif
  42. /* Magic cookie representing robust mutex with dead owner. */
  43. #define PTHREAD_MUTEX_INCONSISTENT INT_MAX
  44. /* Magic cookie representing not recoverable robust mutex. */
  45. #define PTHREAD_MUTEX_NOTRECOVERABLE (INT_MAX - 1)
  46. /* Internal mutex type value. */
  47. enum
  48. {
  49. PTHREAD_MUTEX_KIND_MASK_NP = 3,
  50. PTHREAD_MUTEX_ROBUST_NORMAL_NP = 16,
  51. PTHREAD_MUTEX_ROBUST_RECURSIVE_NP
  52. = PTHREAD_MUTEX_ROBUST_NORMAL_NP | PTHREAD_MUTEX_RECURSIVE_NP,
  53. PTHREAD_MUTEX_ROBUST_ERRORCHECK_NP
  54. = PTHREAD_MUTEX_ROBUST_NORMAL_NP | PTHREAD_MUTEX_ERRORCHECK_NP,
  55. PTHREAD_MUTEX_ROBUST_ADAPTIVE_NP
  56. = PTHREAD_MUTEX_ROBUST_NORMAL_NP | PTHREAD_MUTEX_ADAPTIVE_NP,
  57. PTHREAD_MUTEX_PRIO_INHERIT_NP = 32,
  58. PTHREAD_MUTEX_PI_NORMAL_NP
  59. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_NORMAL,
  60. PTHREAD_MUTEX_PI_RECURSIVE_NP
  61. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_RECURSIVE_NP,
  62. PTHREAD_MUTEX_PI_ERRORCHECK_NP
  63. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ERRORCHECK_NP,
  64. PTHREAD_MUTEX_PI_ADAPTIVE_NP
  65. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ADAPTIVE_NP,
  66. PTHREAD_MUTEX_PI_ROBUST_NORMAL_NP
  67. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ROBUST_NORMAL_NP,
  68. PTHREAD_MUTEX_PI_ROBUST_RECURSIVE_NP
  69. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ROBUST_RECURSIVE_NP,
  70. PTHREAD_MUTEX_PI_ROBUST_ERRORCHECK_NP
  71. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ROBUST_ERRORCHECK_NP,
  72. PTHREAD_MUTEX_PI_ROBUST_ADAPTIVE_NP
  73. = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ROBUST_ADAPTIVE_NP,
  74. PTHREAD_MUTEX_PRIO_PROTECT_NP = 64,
  75. PTHREAD_MUTEX_PP_NORMAL_NP
  76. = PTHREAD_MUTEX_PRIO_PROTECT_NP | PTHREAD_MUTEX_NORMAL,
  77. PTHREAD_MUTEX_PP_RECURSIVE_NP
  78. = PTHREAD_MUTEX_PRIO_PROTECT_NP | PTHREAD_MUTEX_RECURSIVE_NP,
  79. PTHREAD_MUTEX_PP_ERRORCHECK_NP
  80. = PTHREAD_MUTEX_PRIO_PROTECT_NP | PTHREAD_MUTEX_ERRORCHECK_NP,
  81. PTHREAD_MUTEX_PP_ADAPTIVE_NP
  82. = PTHREAD_MUTEX_PRIO_PROTECT_NP | PTHREAD_MUTEX_ADAPTIVE_NP
  83. };
  84. #define PTHREAD_MUTEX_PSHARED_BIT 128
  85. #define PTHREAD_MUTEX_TYPE(m) \
  86. ((m)->__data.__kind & 127)
  87. #if LLL_PRIVATE == 0 && LLL_SHARED == 128
  88. # define PTHREAD_MUTEX_PSHARED(m) \
  89. ((m)->__data.__kind & 128)
  90. #else
  91. # define PTHREAD_MUTEX_PSHARED(m) \
  92. (((m)->__data.__kind & 128) ? LLL_SHARED : LLL_PRIVATE)
  93. #endif
  94. /* The kernel when waking robust mutexes on exit never uses
  95. FUTEX_PRIVATE_FLAG FUTEX_WAKE. */
  96. #define PTHREAD_ROBUST_MUTEX_PSHARED(m) LLL_SHARED
  97. /* Ceiling in __data.__lock. __data.__lock is signed, so don't
  98. use the MSB bit in there, but in the mask also include that bit,
  99. so that the compiler can optimize & PTHREAD_MUTEX_PRIO_CEILING_MASK
  100. masking if the value is then shifted down by
  101. PTHREAD_MUTEX_PRIO_CEILING_SHIFT. */
  102. #define PTHREAD_MUTEX_PRIO_CEILING_SHIFT 19
  103. #define PTHREAD_MUTEX_PRIO_CEILING_MASK 0xfff80000
  104. /* Flags in mutex attr. */
  105. #define PTHREAD_MUTEXATTR_PROTOCOL_SHIFT 28
  106. #define PTHREAD_MUTEXATTR_PROTOCOL_MASK 0x30000000
  107. #define PTHREAD_MUTEXATTR_PRIO_CEILING_SHIFT 12
  108. #define PTHREAD_MUTEXATTR_PRIO_CEILING_MASK 0x00fff000
  109. #define PTHREAD_MUTEXATTR_FLAG_ROBUST 0x40000000
  110. #define PTHREAD_MUTEXATTR_FLAG_PSHARED 0x80000000
  111. #define PTHREAD_MUTEXATTR_FLAG_BITS \
  112. (PTHREAD_MUTEXATTR_FLAG_ROBUST | PTHREAD_MUTEXATTR_FLAG_PSHARED \
  113. | PTHREAD_MUTEXATTR_PROTOCOL_MASK | PTHREAD_MUTEXATTR_PRIO_CEILING_MASK)
  114. /* Check whether rwlock prefers readers. */
  115. #define PTHREAD_RWLOCK_PREFER_READER_P(rwlock) \
  116. ((rwlock)->__data.__flags == 0)
  117. /* Bits used in robust mutex implementation. */
  118. #define FUTEX_WAITERS 0x80000000
  119. #define FUTEX_OWNER_DIED 0x40000000
  120. #define FUTEX_TID_MASK 0x3fffffff
  121. /* Internal variables. */
  122. /* Default stack size. */
  123. extern size_t __default_stacksize attribute_hidden;
  124. /* Size and alignment of static TLS block. */
  125. extern size_t __static_tls_size attribute_hidden;
  126. extern size_t __static_tls_align_m1 attribute_hidden;
  127. /* Flag whether the machine is SMP or not. */
  128. extern int __is_smp attribute_hidden;
  129. /* Thread descriptor handling. */
  130. extern list_t __stack_user;
  131. hidden_proto (__stack_user)
  132. /* Attribute handling. */
  133. extern struct pthread_attr *__attr_list attribute_hidden;
  134. extern int __attr_list_lock attribute_hidden;
  135. /* First available RT signal. */
  136. extern int __current_sigrtmin attribute_hidden;
  137. /* Last available RT signal. */
  138. extern int __current_sigrtmax attribute_hidden;
  139. /* Concurrency handling. */
  140. extern int __concurrency_level attribute_hidden;
  141. /* Thread-local data key handling. */
  142. extern struct pthread_key_struct __pthread_keys[PTHREAD_KEYS_MAX];
  143. hidden_proto (__pthread_keys)
  144. /* Number of threads running. */
  145. extern unsigned int __nptl_nthreads
  146. #ifdef SHARED
  147. attribute_hidden
  148. #else
  149. __attribute ((weak))
  150. #endif
  151. ;
  152. #ifndef __ASSUME_SET_ROBUST_LIST
  153. /* Negative if we do not have the system call and we can use it. */
  154. extern int __set_robust_list_avail attribute_hidden;
  155. #endif
  156. /* Thread Priority Protection. */
  157. extern int __sched_fifo_min_prio attribute_hidden;
  158. extern int __sched_fifo_max_prio attribute_hidden;
  159. extern void __init_sched_fifo_prio (void) attribute_hidden;
  160. extern int __pthread_tpp_change_priority (int prev_prio, int new_prio)
  161. attribute_hidden;
  162. extern int __pthread_current_priority (void) attribute_hidden;
  163. /* The library can run in debugging mode where it performs a lot more
  164. tests. */
  165. extern int __pthread_debug attribute_hidden;
  166. /** For now disable debugging support. */
  167. #if 0
  168. # define DEBUGGING_P __builtin_expect (__pthread_debug, 0)
  169. # define INVALID_TD_P(pd) (DEBUGGING_P && __find_in_stack_list (pd) == NULL)
  170. # define INVALID_NOT_TERMINATED_TD_P(pd) INVALID_TD_P (pd)
  171. #else
  172. # define DEBUGGING_P 0
  173. /* Simplified test. This will not catch all invalid descriptors but
  174. is better than nothing. And if the test triggers the thread
  175. descriptor is guaranteed to be invalid. */
  176. # define INVALID_TD_P(pd) __builtin_expect ((pd)->tid <= 0, 0)
  177. # define INVALID_NOT_TERMINATED_TD_P(pd) __builtin_expect ((pd)->tid < 0, 0)
  178. #endif
  179. /* Cancellation test. */
  180. #define CANCELLATION_P(self) \
  181. do { \
  182. cancelhandling = THREAD_GETMEM (self, cancelhandling); \
  183. if (CANCEL_ENABLED_AND_CANCELED (cancelhandling)) \
  184. { \
  185. THREAD_SETMEM (self, result, PTHREAD_CANCELED); \
  186. __do_cancel (); \
  187. } \
  188. } while (0)
  189. extern void __pthread_unwind (__pthread_unwind_buf_t *__buf)
  190. __cleanup_fct_attribute __attribute ((__noreturn__))
  191. #if !defined SHARED && !defined IS_IN_libpthread
  192. weak_function
  193. #endif
  194. ;
  195. extern void __pthread_unwind_next (__pthread_unwind_buf_t *__buf)
  196. __cleanup_fct_attribute __attribute ((__noreturn__))
  197. #ifndef SHARED
  198. weak_function
  199. #endif
  200. ;
  201. extern void __pthread_register_cancel (__pthread_unwind_buf_t *__buf)
  202. __cleanup_fct_attribute;
  203. extern void __pthread_unregister_cancel (__pthread_unwind_buf_t *__buf)
  204. __cleanup_fct_attribute;
  205. #if defined NOT_IN_libc && defined IS_IN_libpthread
  206. hidden_proto (__pthread_unwind)
  207. hidden_proto (__pthread_unwind_next)
  208. hidden_proto (__pthread_register_cancel)
  209. hidden_proto (__pthread_unregister_cancel)
  210. # ifdef SHARED
  211. extern void attribute_hidden pthread_cancel_init (void);
  212. extern void __unwind_freeres (void);
  213. # endif
  214. #endif
  215. /* Called when a thread reacts on a cancellation request. */
  216. static inline void
  217. __attribute ((noreturn, always_inline))
  218. __do_cancel (void)
  219. {
  220. struct pthread *self = THREAD_SELF;
  221. /* Make sure we get no more cancellations. */
  222. THREAD_ATOMIC_BIT_SET (self, cancelhandling, EXITING_BIT);
  223. __pthread_unwind ((__pthread_unwind_buf_t *)
  224. THREAD_GETMEM (self, cleanup_jmp_buf));
  225. }
  226. /* Set cancellation mode to asynchronous. */
  227. #define CANCEL_ASYNC() \
  228. __pthread_enable_asynccancel ()
  229. /* Reset to previous cancellation mode. */
  230. #define CANCEL_RESET(oldtype) \
  231. __pthread_disable_asynccancel (oldtype)
  232. #define __LABEL_PREFIX__ __stringify(__USER_LABEL_PREFIX__)
  233. #if !defined NOT_IN_libc
  234. /* Same as CANCEL_ASYNC, but for use in libc.so. */
  235. # define LIBC_CANCEL_ASYNC() \
  236. __libc_enable_asynccancel ()
  237. /* Same as CANCEL_RESET, but for use in libc.so. */
  238. # define LIBC_CANCEL_RESET(oldtype) \
  239. __libc_disable_asynccancel (oldtype)
  240. # define LIBC_CANCEL_HANDLED() \
  241. __asm__ (".globl " __LABEL_PREFIX__ "__libc_enable_asynccancel"); \
  242. __asm__ (".globl " __LABEL_PREFIX__ "__libc_disable_asynccancel")
  243. #elif defined NOT_IN_libc && defined IS_IN_libpthread
  244. # define LIBC_CANCEL_ASYNC() CANCEL_ASYNC ()
  245. # define LIBC_CANCEL_RESET(val) CANCEL_RESET (val)
  246. # define LIBC_CANCEL_HANDLED() \
  247. __asm__ (".globl " __LABEL_PREFIX__ "__pthread_enable_asynccancel"); \
  248. __asm__ (".globl " __LABEL_PREFIX__ "__pthread_disable_asynccancel")
  249. #elif defined NOT_IN_libc && defined IS_IN_librt
  250. # define LIBC_CANCEL_ASYNC() \
  251. __librt_enable_asynccancel ()
  252. # define LIBC_CANCEL_RESET(val) \
  253. __librt_disable_asynccancel (val)
  254. # define LIBC_CANCEL_HANDLED() \
  255. __asm__ (".globl " __LABEL_PREFIX__ "__librt_enable_asynccancel"); \
  256. __asm__ (".globl " __LABEL_PREFIX__ "__librt_disable_asynccancel")
  257. #else
  258. # define LIBC_CANCEL_ASYNC() 0 /* Just a dummy value. */
  259. # define LIBC_CANCEL_RESET(val) ((void)(val)) /* Nothing, but evaluate it. */
  260. # define LIBC_CANCEL_HANDLED() /* Nothing. */
  261. #endif
  262. /* The signal used for asynchronous cancellation. */
  263. #define SIGCANCEL __SIGRTMIN
  264. /* Signal needed for the kernel-supported POSIX timer implementation.
  265. We can reuse the cancellation signal since we can distinguish
  266. cancellation from timer expirations. */
  267. #define SIGTIMER SIGCANCEL
  268. /* Signal used to implement the setuid et.al. functions. */
  269. #define SIGSETXID (__SIGRTMIN + 1)
  270. /* Used to communicate with signal handler. */
  271. extern struct xid_command *__xidcmd attribute_hidden;
  272. /* Internal prototypes. */
  273. /* Thread list handling. */
  274. extern struct pthread *__find_in_stack_list (struct pthread *pd)
  275. attribute_hidden internal_function;
  276. /* Deallocate a thread's stack after optionally making sure the thread
  277. descriptor is still valid. */
  278. extern void __free_tcb (struct pthread *pd) attribute_hidden internal_function;
  279. /* Free allocated stack. */
  280. extern void __deallocate_stack (struct pthread *pd)
  281. attribute_hidden internal_function;
  282. /* Mark all the stacks except for the current one as available. This
  283. function also re-initializes the lock for the stack cache. */
  284. extern void __reclaim_stacks (void) attribute_hidden;
  285. /* Make all threads's stacks executable. */
  286. extern int __make_stacks_executable (void **stack_endp)
  287. internal_function attribute_hidden;
  288. /* longjmp handling. */
  289. extern void __pthread_cleanup_upto (__jmp_buf target, char *targetframe);
  290. #if defined NOT_IN_libc && defined IS_IN_libpthread
  291. hidden_proto (__pthread_cleanup_upto)
  292. #endif
  293. /* Functions with versioned interfaces. */
  294. extern int __pthread_create_2_1 (pthread_t *newthread,
  295. const pthread_attr_t *attr,
  296. void *(*start_routine) (void *), void *arg);
  297. extern int __pthread_create_2_0 (pthread_t *newthread,
  298. const pthread_attr_t *attr,
  299. void *(*start_routine) (void *), void *arg);
  300. extern int __pthread_attr_init_2_1 (pthread_attr_t *attr);
  301. extern int __pthread_attr_init_2_0 (pthread_attr_t *attr);
  302. /* Event handlers for libthread_db interface. */
  303. extern void __nptl_create_event (void);
  304. extern void __nptl_death_event (void);
  305. hidden_proto (__nptl_create_event)
  306. hidden_proto (__nptl_death_event)
  307. /* Register the generation counter in the libpthread with the libc. */
  308. #ifdef TLS_MULTIPLE_THREADS_IN_TCB
  309. extern void __libc_pthread_init (unsigned long int *ptr,
  310. void (*reclaim) (void),
  311. const struct pthread_functions *functions);
  312. #else
  313. extern int *__libc_pthread_init (unsigned long int *ptr,
  314. void (*reclaim) (void),
  315. const struct pthread_functions *functions);
  316. /* Variable set to a nonzero value if more than one thread runs or ran. */
  317. extern int __pthread_multiple_threads attribute_hidden;
  318. /* Pointer to the corresponding variable in libc. */
  319. extern int *__libc_multiple_threads_ptr attribute_hidden;
  320. #endif
  321. /* Find a thread given its TID. */
  322. extern struct pthread *__find_thread_by_id (pid_t tid) attribute_hidden
  323. #ifdef SHARED
  324. ;
  325. #else
  326. weak_function;
  327. #define __find_thread_by_id(tid) \
  328. (__find_thread_by_id ? (__find_thread_by_id) (tid) : (struct pthread *) NULL)
  329. #endif
  330. extern void __pthread_init_static_tls (struct link_map *) attribute_hidden;
  331. /* Namespace save aliases. */
  332. extern int __pthread_getschedparam (pthread_t thread_id, int *policy,
  333. struct sched_param *param);
  334. extern int __pthread_setschedparam (pthread_t thread_id, int policy,
  335. const struct sched_param *param);
  336. extern int __pthread_setcancelstate (int state, int *oldstate);
  337. extern int __pthread_mutex_init (pthread_mutex_t *__mutex,
  338. const pthread_mutexattr_t *__mutexattr);
  339. extern int __pthread_mutex_init_internal (pthread_mutex_t *__mutex,
  340. const pthread_mutexattr_t *__mutexattr)
  341. attribute_hidden;
  342. extern int __pthread_mutex_destroy (pthread_mutex_t *__mutex);
  343. extern int __pthread_mutex_destroy_internal (pthread_mutex_t *__mutex)
  344. attribute_hidden;
  345. extern int __pthread_mutex_trylock (pthread_mutex_t *_mutex);
  346. extern int __pthread_mutex_lock (pthread_mutex_t *__mutex);
  347. extern int __pthread_mutex_lock_internal (pthread_mutex_t *__mutex)
  348. attribute_hidden;
  349. extern int __pthread_mutex_cond_lock (pthread_mutex_t *__mutex)
  350. attribute_hidden internal_function;
  351. extern void __pthread_mutex_cond_lock_adjust (pthread_mutex_t *__mutex)
  352. attribute_hidden internal_function;
  353. extern int __pthread_mutex_unlock (pthread_mutex_t *__mutex);
  354. extern int __pthread_mutex_unlock_internal (pthread_mutex_t *__mutex)
  355. attribute_hidden;
  356. extern int __pthread_mutex_unlock_usercnt (pthread_mutex_t *__mutex,
  357. int __decr)
  358. attribute_hidden internal_function;
  359. extern int __pthread_mutexattr_init (pthread_mutexattr_t *attr);
  360. extern int __pthread_mutexattr_destroy (pthread_mutexattr_t *attr);
  361. extern int __pthread_mutexattr_settype (pthread_mutexattr_t *attr, int kind);
  362. extern int __pthread_attr_destroy (pthread_attr_t *attr);
  363. extern int __pthread_attr_getdetachstate (const pthread_attr_t *attr,
  364. int *detachstate);
  365. extern int __pthread_attr_setdetachstate (pthread_attr_t *attr,
  366. int detachstate);
  367. extern int __pthread_attr_getinheritsched (const pthread_attr_t *attr,
  368. int *inherit);
  369. extern int __pthread_attr_setinheritsched (pthread_attr_t *attr, int inherit);
  370. extern int __pthread_attr_getschedparam (const pthread_attr_t *attr,
  371. struct sched_param *param);
  372. extern int __pthread_attr_setschedparam (pthread_attr_t *attr,
  373. const struct sched_param *param);
  374. extern int __pthread_attr_getschedpolicy (const pthread_attr_t *attr,
  375. int *policy);
  376. extern int __pthread_attr_setschedpolicy (pthread_attr_t *attr, int policy);
  377. extern int __pthread_attr_getscope (const pthread_attr_t *attr, int *scope);
  378. extern int __pthread_attr_setscope (pthread_attr_t *attr, int scope);
  379. extern int __pthread_attr_getstackaddr (const pthread_attr_t *__restrict
  380. __attr, void **__restrict __stackaddr);
  381. extern int __pthread_attr_setstackaddr (pthread_attr_t *__attr,
  382. void *__stackaddr);
  383. extern int __pthread_attr_getstacksize (const pthread_attr_t *__restrict
  384. __attr,
  385. size_t *__restrict __stacksize);
  386. extern int __pthread_attr_setstacksize (pthread_attr_t *__attr,
  387. size_t __stacksize);
  388. extern int __pthread_attr_getstack (const pthread_attr_t *__restrict __attr,
  389. void **__restrict __stackaddr,
  390. size_t *__restrict __stacksize);
  391. extern int __pthread_attr_setstack (pthread_attr_t *__attr, void *__stackaddr,
  392. size_t __stacksize);
  393. extern int __pthread_rwlock_init (pthread_rwlock_t *__restrict __rwlock,
  394. const pthread_rwlockattr_t *__restrict
  395. __attr);
  396. extern int __pthread_rwlock_destroy (pthread_rwlock_t *__rwlock);
  397. extern int __pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock);
  398. extern int __pthread_rwlock_rdlock_internal (pthread_rwlock_t *__rwlock);
  399. extern int __pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock);
  400. extern int __pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock);
  401. extern int __pthread_rwlock_wrlock_internal (pthread_rwlock_t *__rwlock);
  402. extern int __pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock);
  403. extern int __pthread_rwlock_unlock (pthread_rwlock_t *__rwlock);
  404. extern int __pthread_rwlock_unlock_internal (pthread_rwlock_t *__rwlock);
  405. extern int __pthread_cond_broadcast (pthread_cond_t *cond);
  406. extern int __pthread_cond_destroy (pthread_cond_t *cond);
  407. extern int __pthread_cond_init (pthread_cond_t *cond,
  408. const pthread_condattr_t *cond_attr);
  409. extern int __pthread_cond_signal (pthread_cond_t *cond);
  410. extern int __pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex);
  411. extern int __pthread_cond_timedwait (pthread_cond_t *cond,
  412. pthread_mutex_t *mutex,
  413. const struct timespec *abstime);
  414. extern int __pthread_condattr_destroy (pthread_condattr_t *attr);
  415. extern int __pthread_condattr_init (pthread_condattr_t *attr);
  416. extern int __pthread_key_create (pthread_key_t *key, void (*destr) (void *));
  417. extern int __pthread_key_create_internal (pthread_key_t *key,
  418. void (*destr) (void *));
  419. extern void *__pthread_getspecific (pthread_key_t key);
  420. extern void *__pthread_getspecific_internal (pthread_key_t key);
  421. extern int __pthread_setspecific (pthread_key_t key, const void *value);
  422. extern int __pthread_setspecific_internal (pthread_key_t key,
  423. const void *value);
  424. extern int __pthread_once (pthread_once_t *once_control,
  425. void (*init_routine) (void));
  426. extern int __pthread_once_internal (pthread_once_t *once_control,
  427. void (*init_routine) (void));
  428. extern int __pthread_atfork (void (*prepare) (void), void (*parent) (void),
  429. void (*child) (void));
  430. extern pthread_t __pthread_self (void);
  431. extern int __pthread_equal (pthread_t thread1, pthread_t thread2);
  432. extern int __pthread_kill (pthread_t threadid, int signo);
  433. extern void __pthread_exit (void *value);
  434. extern int __pthread_setcanceltype (int type, int *oldtype);
  435. extern int __pthread_enable_asynccancel (void) attribute_hidden;
  436. extern void __pthread_disable_asynccancel (int oldtype)
  437. internal_function attribute_hidden;
  438. extern int __pthread_cond_broadcast_2_0 (pthread_cond_2_0_t *cond);
  439. extern int __pthread_cond_destroy_2_0 (pthread_cond_2_0_t *cond);
  440. extern int __pthread_cond_init_2_0 (pthread_cond_2_0_t *cond,
  441. const pthread_condattr_t *cond_attr);
  442. extern int __pthread_cond_signal_2_0 (pthread_cond_2_0_t *cond);
  443. extern int __pthread_cond_timedwait_2_0 (pthread_cond_2_0_t *cond,
  444. pthread_mutex_t *mutex,
  445. const struct timespec *abstime);
  446. extern int __pthread_cond_wait_2_0 (pthread_cond_2_0_t *cond,
  447. pthread_mutex_t *mutex);
  448. extern int __pthread_getaffinity_np (pthread_t th, size_t cpusetsize,
  449. cpu_set_t *cpuset);
  450. /* The two functions are in libc.so and not exported. */
  451. extern int __libc_enable_asynccancel (void) attribute_hidden;
  452. extern void __libc_disable_asynccancel (int oldtype)
  453. internal_function attribute_hidden;
  454. /* The two functions are in librt.so and not exported. */
  455. extern int __librt_enable_asynccancel (void) attribute_hidden;
  456. extern void __librt_disable_asynccancel (int oldtype)
  457. internal_function attribute_hidden;
  458. #ifdef IS_IN_libpthread
  459. /* Special versions which use non-exported functions. */
  460. extern void __pthread_cleanup_push (struct _pthread_cleanup_buffer *buffer,
  461. void (*routine) (void *), void *arg)
  462. attribute_hidden;
  463. # undef pthread_cleanup_push
  464. # define pthread_cleanup_push(routine,arg) \
  465. { struct _pthread_cleanup_buffer _buffer; \
  466. __pthread_cleanup_push (&_buffer, (routine), (arg));
  467. extern void __pthread_cleanup_pop (struct _pthread_cleanup_buffer *buffer,
  468. int execute) attribute_hidden;
  469. # undef pthread_cleanup_pop
  470. # define pthread_cleanup_pop(execute) \
  471. __pthread_cleanup_pop (&_buffer, (execute)); }
  472. #endif
  473. extern void __pthread_cleanup_push_defer (struct _pthread_cleanup_buffer *buffer,
  474. void (*routine) (void *), void *arg);
  475. extern void __pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *buffer,
  476. int execute);
  477. /* Old cleanup interfaces, still used in libc.so. */
  478. extern void _pthread_cleanup_push (struct _pthread_cleanup_buffer *buffer,
  479. void (*routine) (void *), void *arg);
  480. extern void _pthread_cleanup_pop (struct _pthread_cleanup_buffer *buffer,
  481. int execute);
  482. extern void _pthread_cleanup_push_defer (struct _pthread_cleanup_buffer *buffer,
  483. void (*routine) (void *), void *arg);
  484. extern void _pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *buffer,
  485. int execute);
  486. extern void __nptl_deallocate_tsd (void)
  487. #ifdef SHARED
  488. attribute_hidden
  489. #else
  490. __attribute ((weak))
  491. #endif
  492. ;
  493. extern int __nptl_setxid (struct xid_command *cmdp) attribute_hidden;
  494. extern void __free_stacks (size_t limit) attribute_hidden;
  495. extern void __wait_lookup_done (void) attribute_hidden;
  496. #ifdef SHARED
  497. # define PTHREAD_STATIC_FN_REQUIRE(name)
  498. #else
  499. # define PTHREAD_STATIC_FN_REQUIRE(name) __asm__ (".globl " #name);
  500. #endif
  501. #ifndef __NR_set_robust_list
  502. /* XXX For the time being... Once we can rely on the kernel headers
  503. having the definition remove these lines. */
  504. # if defined __i386__
  505. # define __NR_set_robust_list 311
  506. # elif defined __x86_64__
  507. # define __NR_set_robust_list 273
  508. # endif
  509. #endif
  510. #endif /* pthreadP.h */