pthread.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  1. /* Linuxthreads - a simple clone()-based implementation of Posix */
  2. /* threads for Linux. */
  3. /* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */
  4. /* */
  5. /* This program is free software; you can redistribute it and/or */
  6. /* modify it under the terms of the GNU Library General Public License */
  7. /* as published by the Free Software Foundation; either version 2 */
  8. /* of the License, or (at your option) any later version. */
  9. /* */
  10. /* This program is distributed in the hope that it will be useful, */
  11. /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
  12. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
  13. /* GNU Library General Public License for more details. */
  14. #ifndef _PTHREAD_H
  15. #define _PTHREAD_H 1
  16. #include <features.h>
  17. #include <sched.h>
  18. #include <time.h>
  19. #define __need_sigset_t
  20. #include <signal.h>
  21. #include <bits/pthreadtypes.h>
  22. #include <bits/initspin.h>
  23. __BEGIN_DECLS
  24. /* Initializers. */
  25. #define PTHREAD_MUTEX_INITIALIZER \
  26. {0, 0, 0, PTHREAD_MUTEX_TIMED_NP, __LOCK_INITIALIZER}
  27. #ifdef __USE_GNU
  28. # define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP \
  29. {0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP, __LOCK_INITIALIZER}
  30. # define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP \
  31. {0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP, __LOCK_INITIALIZER}
  32. # define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP \
  33. {0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP, __LOCK_INITIALIZER}
  34. #endif
  35. #define PTHREAD_COND_INITIALIZER {__LOCK_INITIALIZER, 0, "", 0}
  36. #if defined __USE_UNIX98 || defined __USE_XOPEN2K
  37. # define PTHREAD_RWLOCK_INITIALIZER \
  38. { __LOCK_INITIALIZER, 0, NULL, NULL, NULL, \
  39. PTHREAD_RWLOCK_DEFAULT_NP, PTHREAD_PROCESS_PRIVATE }
  40. #endif
  41. #ifdef __USE_GNU
  42. # define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP \
  43. { __LOCK_INITIALIZER, 0, NULL, NULL, NULL, \
  44. PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, PTHREAD_PROCESS_PRIVATE }
  45. #endif
  46. /* Values for attributes. */
  47. enum
  48. {
  49. PTHREAD_CREATE_JOINABLE,
  50. #define PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_JOINABLE
  51. PTHREAD_CREATE_DETACHED
  52. #define PTHREAD_CREATE_DETACHED PTHREAD_CREATE_DETACHED
  53. };
  54. enum
  55. {
  56. PTHREAD_INHERIT_SCHED,
  57. #define PTHREAD_INHERIT_SCHED PTHREAD_INHERIT_SCHED
  58. PTHREAD_EXPLICIT_SCHED
  59. #define PTHREAD_EXPLICIT_SCHED PTHREAD_EXPLICIT_SCHED
  60. };
  61. enum
  62. {
  63. PTHREAD_SCOPE_SYSTEM,
  64. #define PTHREAD_SCOPE_SYSTEM PTHREAD_SCOPE_SYSTEM
  65. PTHREAD_SCOPE_PROCESS
  66. #define PTHREAD_SCOPE_PROCESS PTHREAD_SCOPE_PROCESS
  67. };
  68. enum
  69. {
  70. PTHREAD_MUTEX_TIMED_NP,
  71. PTHREAD_MUTEX_RECURSIVE_NP,
  72. PTHREAD_MUTEX_ERRORCHECK_NP,
  73. PTHREAD_MUTEX_ADAPTIVE_NP
  74. #ifdef __USE_UNIX98
  75. ,
  76. PTHREAD_MUTEX_NORMAL = PTHREAD_MUTEX_TIMED_NP,
  77. PTHREAD_MUTEX_RECURSIVE = PTHREAD_MUTEX_RECURSIVE_NP,
  78. PTHREAD_MUTEX_ERRORCHECK = PTHREAD_MUTEX_ERRORCHECK_NP,
  79. PTHREAD_MUTEX_DEFAULT = PTHREAD_MUTEX_NORMAL
  80. #endif
  81. #ifdef __USE_GNU
  82. /* For compatibility. */
  83. , PTHREAD_MUTEX_FAST_NP = PTHREAD_MUTEX_ADAPTIVE_NP
  84. #endif
  85. };
  86. enum
  87. {
  88. PTHREAD_PROCESS_PRIVATE,
  89. #define PTHREAD_PROCESS_PRIVATE PTHREAD_PROCESS_PRIVATE
  90. PTHREAD_PROCESS_SHARED
  91. #define PTHREAD_PROCESS_SHARED PTHREAD_PROCESS_SHARED
  92. };
  93. #if defined __USE_UNIX98 || defined __USE_XOPEN2K
  94. enum
  95. {
  96. PTHREAD_RWLOCK_PREFER_READER_NP,
  97. PTHREAD_RWLOCK_PREFER_WRITER_NP,
  98. PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP,
  99. PTHREAD_RWLOCK_DEFAULT_NP = PTHREAD_RWLOCK_PREFER_WRITER_NP
  100. };
  101. #endif /* Unix98 */
  102. #define PTHREAD_ONCE_INIT 0
  103. /* Special constants */
  104. #ifdef __USE_XOPEN2K
  105. /* -1 is distinct from 0 and all errno constants */
  106. # define PTHREAD_BARRIER_SERIAL_THREAD -1
  107. #endif
  108. /* Cleanup buffers */
  109. struct _pthread_cleanup_buffer
  110. {
  111. void (*__routine) (void *); /* Function to call. */
  112. void *__arg; /* Its argument. */
  113. int __canceltype; /* Saved cancellation type. */
  114. struct _pthread_cleanup_buffer *__prev; /* Chaining of cleanup functions. */
  115. };
  116. /* Cancellation */
  117. enum
  118. {
  119. PTHREAD_CANCEL_ENABLE,
  120. #define PTHREAD_CANCEL_ENABLE PTHREAD_CANCEL_ENABLE
  121. PTHREAD_CANCEL_DISABLE
  122. #define PTHREAD_CANCEL_DISABLE PTHREAD_CANCEL_DISABLE
  123. };
  124. enum
  125. {
  126. PTHREAD_CANCEL_DEFERRED,
  127. #define PTHREAD_CANCEL_DEFERRED PTHREAD_CANCEL_DEFERRED
  128. PTHREAD_CANCEL_ASYNCHRONOUS
  129. #define PTHREAD_CANCEL_ASYNCHRONOUS PTHREAD_CANCEL_ASYNCHRONOUS
  130. };
  131. #define PTHREAD_CANCELED ((void *) -1)
  132. /* Function for handling threads. */
  133. /* Create a thread with given attributes ATTR (or default attributes
  134. if ATTR is NULL), and call function START_ROUTINE with given
  135. arguments ARG. */
  136. extern int pthread_create (pthread_t *__restrict __threadp,
  137. const pthread_attr_t *__restrict __attr,
  138. void *(*__start_routine) (void *),
  139. void *__restrict __arg) __THROWNL;
  140. /* Obtain the identifier of the current thread. */
  141. extern pthread_t pthread_self (void) __THROW;
  142. /* Compare two thread identifiers. */
  143. extern int pthread_equal (pthread_t __thread1, pthread_t __thread2) __THROW;
  144. /* Terminate calling thread. */
  145. extern void pthread_exit (void *__retval) __attribute__ ((__noreturn__));
  146. /* Make calling thread wait for termination of the thread TH. The
  147. exit status of the thread is stored in *THREAD_RETURN, if THREAD_RETURN
  148. is not NULL. */
  149. extern int pthread_join (pthread_t __th, void **__thread_return);
  150. /* Indicate that the thread TH is never to be joined with PTHREAD_JOIN.
  151. The resources of TH will therefore be freed immediately when it
  152. terminates, instead of waiting for another thread to perform PTHREAD_JOIN
  153. on it. */
  154. extern int pthread_detach (pthread_t __th) __THROW;
  155. /* Functions for handling attributes. */
  156. /* Initialize thread attribute *ATTR with default attributes
  157. (detachstate is PTHREAD_JOINABLE, scheduling policy is SCHED_OTHER,
  158. no user-provided stack). */
  159. extern int pthread_attr_init (pthread_attr_t *__attr) __THROW;
  160. /* Destroy thread attribute *ATTR. */
  161. extern int pthread_attr_destroy (pthread_attr_t *__attr) __THROW;
  162. /* Set the `detachstate' attribute in *ATTR according to DETACHSTATE. */
  163. extern int pthread_attr_setdetachstate (pthread_attr_t *__attr,
  164. int __detachstate) __THROW;
  165. /* Return in *DETACHSTATE the `detachstate' attribute in *ATTR. */
  166. extern int pthread_attr_getdetachstate (const pthread_attr_t *__attr,
  167. int *__detachstate) __THROW;
  168. /* Set scheduling parameters (priority, etc) in *ATTR according to PARAM. */
  169. extern int pthread_attr_setschedparam (pthread_attr_t *__restrict __attr,
  170. const struct sched_param *__restrict
  171. __param) __THROW;
  172. /* Return in *PARAM the scheduling parameters of *ATTR. */
  173. extern int pthread_attr_getschedparam (const pthread_attr_t *__restrict
  174. __attr,
  175. struct sched_param *__restrict __param)
  176. __THROW;
  177. /* Set scheduling policy in *ATTR according to POLICY. */
  178. extern int pthread_attr_setschedpolicy (pthread_attr_t *__attr, int __policy)
  179. __THROW;
  180. /* Return in *POLICY the scheduling policy of *ATTR. */
  181. extern int pthread_attr_getschedpolicy (const pthread_attr_t *__restrict
  182. __attr, int *__restrict __policy)
  183. __THROW;
  184. /* Set scheduling inheritance mode in *ATTR according to INHERIT. */
  185. extern int pthread_attr_setinheritsched (pthread_attr_t *__attr,
  186. int __inherit) __THROW;
  187. /* Return in *INHERIT the scheduling inheritance mode of *ATTR. */
  188. extern int pthread_attr_getinheritsched (const pthread_attr_t *__restrict
  189. __attr, int *__restrict __inherit)
  190. __THROW;
  191. /* Set scheduling contention scope in *ATTR according to SCOPE. */
  192. extern int pthread_attr_setscope (pthread_attr_t *__attr, int __scope)
  193. __THROW;
  194. /* Return in *SCOPE the scheduling contention scope of *ATTR. */
  195. extern int pthread_attr_getscope (const pthread_attr_t *__restrict __attr,
  196. int *__restrict __scope) __THROW;
  197. #ifdef __USE_UNIX98
  198. /* Set the size of the guard area at the bottom of the thread. */
  199. extern int pthread_attr_setguardsize (pthread_attr_t *__attr,
  200. size_t __guardsize) __THROW;
  201. /* Get the size of the guard area at the bottom of the thread. */
  202. extern int pthread_attr_getguardsize (const pthread_attr_t *__restrict
  203. __attr, size_t *__restrict __guardsize)
  204. __THROW;
  205. #endif
  206. #if 0 /* uClibc: deprecated stuff disabled. def __UCLIBC_SUSV3_LEGACY__ */
  207. /* Set the starting address of the stack of the thread to be created.
  208. Depending on whether the stack grows up or down the value must either
  209. be higher or lower than all the address in the memory block. The
  210. minimal size of the block must be PTHREAD_STACK_MIN. */
  211. extern int pthread_attr_setstackaddr (pthread_attr_t *__attr,
  212. void *__stackaddr) __THROW;
  213. /* Return the previously set address for the stack. */
  214. extern int pthread_attr_getstackaddr (const pthread_attr_t *__restrict
  215. __attr, void **__restrict __stackaddr)
  216. __THROW;
  217. #endif
  218. #ifdef __USE_XOPEN2K
  219. /* The following two interfaces are intended to replace the last two. They
  220. require setting the address as well as the size since only setting the
  221. address will make the implementation on some architectures impossible. */
  222. extern int pthread_attr_setstack (pthread_attr_t *__attr, void *__stackaddr,
  223. size_t __stacksize) __THROW;
  224. /* Return the previously set address for the stack. */
  225. extern int pthread_attr_getstack (const pthread_attr_t *__restrict __attr,
  226. void **__restrict __stackaddr,
  227. size_t *__restrict __stacksize) __THROW;
  228. #endif
  229. /* Add information about the minimum stack size needed for the thread
  230. to be started. This size must never be less than PTHREAD_STACK_MIN
  231. and must also not exceed the system limits. */
  232. extern int pthread_attr_setstacksize (pthread_attr_t *__attr,
  233. size_t __stacksize) __THROW;
  234. /* Return the currently used minimal stack size. */
  235. extern int pthread_attr_getstacksize (const pthread_attr_t *__restrict
  236. __attr, size_t *__restrict __stacksize)
  237. __THROW;
  238. #ifdef __USE_GNU
  239. /* Initialize thread attribute *ATTR with attributes corresponding to the
  240. already running thread TH. It shall be called on uninitialized ATTR
  241. and destroyed with pthread_attr_destroy when no longer needed. */
  242. extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr) __THROW;
  243. #endif
  244. /* Functions for scheduling control. */
  245. /* Set the scheduling parameters for TARGET_THREAD according to POLICY
  246. and *PARAM. */
  247. extern int pthread_setschedparam (pthread_t __target_thread, int __policy,
  248. const struct sched_param *__param)
  249. __THROW;
  250. /* Return in *POLICY and *PARAM the scheduling parameters for TARGET_THREAD. */
  251. extern int pthread_getschedparam (pthread_t __target_thread,
  252. int *__restrict __policy,
  253. struct sched_param *__restrict __param)
  254. __THROW;
  255. #ifdef __USE_UNIX98
  256. /* Determine level of concurrency. */
  257. extern int pthread_getconcurrency (void) __THROW;
  258. /* Set new concurrency level to LEVEL. */
  259. extern int pthread_setconcurrency (int __level) __THROW;
  260. #endif
  261. /* Functions for mutex handling. */
  262. /* Initialize MUTEX using attributes in *MUTEX_ATTR, or use the
  263. default values if later is NULL. */
  264. extern int pthread_mutex_init (pthread_mutex_t *__restrict __mutex,
  265. const pthread_mutexattr_t *__restrict
  266. __mutex_attr) __THROW;
  267. /* Destroy MUTEX. */
  268. extern int pthread_mutex_destroy (pthread_mutex_t *__mutex) __THROW;
  269. /* Try to lock MUTEX. */
  270. extern int pthread_mutex_trylock (pthread_mutex_t *__mutex) __THROWNL;
  271. /* Wait until lock for MUTEX becomes available and lock it. */
  272. extern int pthread_mutex_lock (pthread_mutex_t *__mutex) __THROWNL;
  273. #ifdef __USE_XOPEN2K
  274. /* Wait until lock becomes available, or specified time passes. */
  275. extern int pthread_mutex_timedlock (pthread_mutex_t *__restrict __mutex,
  276. const struct timespec *__restrict
  277. __abstime) __THROWNL;
  278. #endif
  279. /* Unlock MUTEX. */
  280. extern int pthread_mutex_unlock (pthread_mutex_t *__mutex) __THROWNL;
  281. /* Functions for handling mutex attributes. */
  282. /* Initialize mutex attribute object ATTR with default attributes
  283. (kind is PTHREAD_MUTEX_TIMED_NP). */
  284. extern int pthread_mutexattr_init (pthread_mutexattr_t *__attr) __THROW;
  285. /* Destroy mutex attribute object ATTR. */
  286. extern int pthread_mutexattr_destroy (pthread_mutexattr_t *__attr) __THROW;
  287. /* Get the process-shared flag of the mutex attribute ATTR. */
  288. extern int pthread_mutexattr_getpshared (const pthread_mutexattr_t *
  289. __restrict __attr,
  290. int *__restrict __pshared) __THROW;
  291. /* Set the process-shared flag of the mutex attribute ATTR. */
  292. extern int pthread_mutexattr_setpshared (pthread_mutexattr_t *__attr,
  293. int __pshared) __THROW;
  294. #ifdef __USE_UNIX98
  295. /* Set the mutex kind attribute in *ATTR to KIND (either PTHREAD_MUTEX_NORMAL,
  296. PTHREAD_MUTEX_RECURSIVE, PTHREAD_MUTEX_ERRORCHECK, or
  297. PTHREAD_MUTEX_DEFAULT). */
  298. extern int pthread_mutexattr_settype (pthread_mutexattr_t *__attr, int __kind)
  299. __THROW;
  300. /* Return in *KIND the mutex kind attribute in *ATTR. */
  301. extern int pthread_mutexattr_gettype (const pthread_mutexattr_t *__restrict
  302. __attr, int *__restrict __kind) __THROW;
  303. #endif
  304. /* Functions for handling conditional variables. */
  305. /* Initialize condition variable COND using attributes ATTR, or use
  306. the default values if later is NULL. */
  307. extern int pthread_cond_init (pthread_cond_t *__restrict __cond,
  308. const pthread_condattr_t *__restrict
  309. __cond_attr) __THROW;
  310. /* Destroy condition variable COND. */
  311. extern int pthread_cond_destroy (pthread_cond_t *__cond) __THROW;
  312. /* Wake up one thread waiting for condition variable COND. */
  313. extern int pthread_cond_signal (pthread_cond_t *__cond) __THROWNL;
  314. /* Wake up all threads waiting for condition variables COND. */
  315. extern int pthread_cond_broadcast (pthread_cond_t *__cond) __THROWNL;
  316. /* Wait for condition variable COND to be signaled or broadcast.
  317. MUTEX is assumed to be locked before. */
  318. extern int pthread_cond_wait (pthread_cond_t *__restrict __cond,
  319. pthread_mutex_t *__restrict __mutex);
  320. /* Wait for condition variable COND to be signaled or broadcast until
  321. ABSTIME. MUTEX is assumed to be locked before. ABSTIME is an
  322. absolute time specification; zero is the beginning of the epoch
  323. (00:00:00 GMT, January 1, 1970). */
  324. extern int pthread_cond_timedwait (pthread_cond_t *__restrict __cond,
  325. pthread_mutex_t *__restrict __mutex,
  326. const struct timespec *__restrict
  327. __abstime);
  328. /* Functions for handling condition variable attributes. */
  329. /* Initialize condition variable attribute ATTR. */
  330. extern int pthread_condattr_init (pthread_condattr_t *__attr) __THROW;
  331. /* Destroy condition variable attribute ATTR. */
  332. extern int pthread_condattr_destroy (pthread_condattr_t *__attr) __THROW;
  333. /* Get the process-shared flag of the condition variable attribute ATTR. */
  334. extern int pthread_condattr_getpshared (const pthread_condattr_t *
  335. __restrict __attr,
  336. int *__restrict __pshared) __THROW;
  337. /* Set the process-shared flag of the condition variable attribute ATTR. */
  338. extern int pthread_condattr_setpshared (pthread_condattr_t *__attr,
  339. int __pshared) __THROW;
  340. #if defined __USE_UNIX98 || defined __USE_XOPEN2K
  341. /* Functions for handling read-write locks. */
  342. /* Initialize read-write lock RWLOCK using attributes ATTR, or use
  343. the default values if later is NULL. */
  344. extern int pthread_rwlock_init (pthread_rwlock_t *__restrict __rwlock,
  345. const pthread_rwlockattr_t *__restrict
  346. __attr) __THROW;
  347. /* Destroy read-write lock RWLOCK. */
  348. extern int pthread_rwlock_destroy (pthread_rwlock_t *__rwlock) __THROW;
  349. /* Acquire read lock for RWLOCK. */
  350. extern int pthread_rwlock_rdlock (pthread_rwlock_t *__rwlock) __THROWNL;
  351. /* Try to acquire read lock for RWLOCK. */
  352. extern int pthread_rwlock_tryrdlock (pthread_rwlock_t *__rwlock) __THROWNL;
  353. # ifdef __USE_XOPEN2K
  354. /* Try to acquire read lock for RWLOCK or return after specfied time. */
  355. extern int pthread_rwlock_timedrdlock (pthread_rwlock_t *__restrict __rwlock,
  356. const struct timespec *__restrict
  357. __abstime) __THROWNL;
  358. # endif
  359. /* Acquire write lock for RWLOCK. */
  360. extern int pthread_rwlock_wrlock (pthread_rwlock_t *__rwlock) __THROWNL;
  361. /* Try to acquire write lock for RWLOCK. */
  362. extern int pthread_rwlock_trywrlock (pthread_rwlock_t *__rwlock) __THROWNL;
  363. # ifdef __USE_XOPEN2K
  364. /* Try to acquire write lock for RWLOCK or return after specfied time. */
  365. extern int pthread_rwlock_timedwrlock (pthread_rwlock_t *__restrict __rwlock,
  366. const struct timespec *__restrict
  367. __abstime) __THROWNL;
  368. # endif
  369. /* Unlock RWLOCK. */
  370. extern int pthread_rwlock_unlock (pthread_rwlock_t *__rwlock) __THROWNL;
  371. /* Functions for handling read-write lock attributes. */
  372. /* Initialize attribute object ATTR with default values. */
  373. extern int pthread_rwlockattr_init (pthread_rwlockattr_t *__attr) __THROW;
  374. /* Destroy attribute object ATTR. */
  375. extern int pthread_rwlockattr_destroy (pthread_rwlockattr_t *__attr) __THROW;
  376. /* Return current setting of process-shared attribute of ATTR in PSHARED. */
  377. extern int pthread_rwlockattr_getpshared (const pthread_rwlockattr_t *
  378. __restrict __attr,
  379. int *__restrict __pshared) __THROW;
  380. /* Set process-shared attribute of ATTR to PSHARED. */
  381. extern int pthread_rwlockattr_setpshared (pthread_rwlockattr_t *__attr,
  382. int __pshared) __THROW;
  383. /* Return current setting of reader/writer preference. */
  384. extern int pthread_rwlockattr_getkind_np (const pthread_rwlockattr_t *__attr,
  385. int *__pref) __THROW;
  386. /* Set reader/write preference. */
  387. extern int pthread_rwlockattr_setkind_np (pthread_rwlockattr_t *__attr,
  388. int __pref) __THROW;
  389. #endif
  390. #ifdef __USE_XOPEN2K
  391. /* The IEEE Std. 1003.1j-2000 introduces functions to implement
  392. spinlocks. */
  393. /* Initialize the spinlock LOCK. If PSHARED is nonzero the spinlock can
  394. be shared between different processes. */
  395. extern int pthread_spin_init (pthread_spinlock_t *__lock, int __pshared)
  396. __THROW;
  397. /* Destroy the spinlock LOCK. */
  398. extern int pthread_spin_destroy (pthread_spinlock_t *__lock) __THROW;
  399. /* Wait until spinlock LOCK is retrieved. */
  400. extern int pthread_spin_lock (pthread_spinlock_t *__lock) __THROWNL;
  401. /* Try to lock spinlock LOCK. */
  402. extern int pthread_spin_trylock (pthread_spinlock_t *__lock) __THROWNL;
  403. /* Release spinlock LOCK. */
  404. extern int pthread_spin_unlock (pthread_spinlock_t *__lock) __THROWNL;
  405. /* Barriers are a also a new feature in 1003.1j-2000. */
  406. extern int pthread_barrier_init (pthread_barrier_t *__restrict __barrier,
  407. const pthread_barrierattr_t *__restrict
  408. __attr, unsigned int __count) __THROW;
  409. extern int pthread_barrier_destroy (pthread_barrier_t *__barrier) __THROW;
  410. extern int pthread_barrierattr_init (pthread_barrierattr_t *__attr) __THROW;
  411. extern int pthread_barrierattr_destroy (pthread_barrierattr_t *__attr) __THROW;
  412. extern int pthread_barrierattr_getpshared (const pthread_barrierattr_t *
  413. __restrict __attr,
  414. int *__restrict __pshared) __THROW;
  415. extern int pthread_barrierattr_setpshared (pthread_barrierattr_t *__attr,
  416. int __pshared) __THROW;
  417. extern int pthread_barrier_wait (pthread_barrier_t *__barrier) __THROWNL;
  418. #endif
  419. /* Functions for handling thread-specific data. */
  420. /* Create a key value identifying a location in the thread-specific
  421. data area. Each thread maintains a distinct thread-specific data
  422. area. DESTR_FUNCTION, if non-NULL, is called with the value
  423. associated to that key when the key is destroyed.
  424. DESTR_FUNCTION is not called if the value associated is NULL when
  425. the key is destroyed. */
  426. extern int pthread_key_create (pthread_key_t *__key,
  427. void (*__destr_function) (void *)) __THROW;
  428. /* Destroy KEY. */
  429. extern int pthread_key_delete (pthread_key_t __key) __THROW;
  430. /* Store POINTER in the thread-specific data slot identified by KEY. */
  431. extern int pthread_setspecific (pthread_key_t __key,
  432. const void *__pointer) __THROW;
  433. /* Return current value of the thread-specific data slot identified by KEY. */
  434. extern void *pthread_getspecific (pthread_key_t __key) __THROW;
  435. /* Functions for handling initialization. */
  436. /* Guarantee that the initialization function INIT_ROUTINE will be called
  437. only once, even if pthread_once is executed several times with the
  438. same ONCE_CONTROL argument. ONCE_CONTROL must point to a static or
  439. extern variable initialized to PTHREAD_ONCE_INIT.
  440. The initialization functions might throw exception which is why
  441. this function is not marked with __THROW. */
  442. extern int pthread_once (pthread_once_t *__once_control,
  443. void (*__init_routine) (void));
  444. /* Functions for handling cancellation. */
  445. /* Set cancelability state of current thread to STATE, returning old
  446. state in *OLDSTATE if OLDSTATE is not NULL. */
  447. extern int pthread_setcancelstate (int __state, int *__oldstate);
  448. /* Set cancellation state of current thread to TYPE, returning the old
  449. type in *OLDTYPE if OLDTYPE is not NULL. */
  450. extern int pthread_setcanceltype (int __type, int *__oldtype);
  451. /* Cancel THREAD immediately or at the next possibility. */
  452. extern int pthread_cancel (pthread_t __cancelthread);
  453. /* Test for pending cancellation for the current thread and terminate
  454. the thread as per pthread_exit(PTHREAD_CANCELED) if it has been
  455. cancelled. */
  456. extern void pthread_testcancel (void);
  457. /* Install a cleanup handler: ROUTINE will be called with arguments ARG
  458. when the thread is cancelled or calls pthread_exit. ROUTINE will also
  459. be called with arguments ARG when the matching pthread_cleanup_pop
  460. is executed with non-zero EXECUTE argument.
  461. pthread_cleanup_push and pthread_cleanup_pop are macros and must always
  462. be used in matching pairs at the same nesting level of braces. */
  463. #define pthread_cleanup_push(routine,arg) \
  464. { struct _pthread_cleanup_buffer _buffer; \
  465. _pthread_cleanup_push (&_buffer, (routine), (arg));
  466. extern void _pthread_cleanup_push (struct _pthread_cleanup_buffer *__buffer,
  467. void (*__routine) (void *),
  468. void *__arg) __THROW;
  469. /* Remove a cleanup handler installed by the matching pthread_cleanup_push.
  470. If EXECUTE is non-zero, the handler function is called. */
  471. #define pthread_cleanup_pop(execute) \
  472. _pthread_cleanup_pop (&_buffer, (execute)); }
  473. extern void _pthread_cleanup_pop (struct _pthread_cleanup_buffer *__buffer,
  474. int __execute) __THROW;
  475. /* Install a cleanup handler as pthread_cleanup_push does, but also
  476. saves the current cancellation type and set it to deferred cancellation. */
  477. #ifdef __USE_GNU
  478. # define pthread_cleanup_push_defer_np(routine,arg) \
  479. { struct _pthread_cleanup_buffer _buffer; \
  480. _pthread_cleanup_push_defer (&_buffer, (routine), (arg));
  481. extern void _pthread_cleanup_push_defer (struct _pthread_cleanup_buffer *__buffer,
  482. void (*__routine) (void *),
  483. void *__arg) __THROW;
  484. /* Remove a cleanup handler as pthread_cleanup_pop does, but also
  485. restores the cancellation type that was in effect when the matching
  486. pthread_cleanup_push_defer was called. */
  487. # define pthread_cleanup_pop_restore_np(execute) \
  488. _pthread_cleanup_pop_restore (&_buffer, (execute)); }
  489. extern void _pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *__buffer,
  490. int __execute) __THROW;
  491. #endif
  492. #ifdef __USE_XOPEN2K
  493. /* Get ID of CPU-time clock for thread THREAD_ID. */
  494. extern int pthread_getcpuclockid (pthread_t __thread_id,
  495. __clockid_t *__clock_id) __THROW;
  496. #endif
  497. /* Functions for handling signals. */
  498. #include <bits/sigthread.h>
  499. /* Functions for handling process creation and process execution. */
  500. /* Install handlers to be called when a new process is created with FORK.
  501. The PREPARE handler is called in the parent process just before performing
  502. FORK. The PARENT handler is called in the parent process just after FORK.
  503. The CHILD handler is called in the child process. Each of the three
  504. handlers can be NULL, meaning that no handler needs to be called at that
  505. point.
  506. PTHREAD_ATFORK can be called several times, in which case the PREPARE
  507. handlers are called in LIFO order (last added with PTHREAD_ATFORK,
  508. first called before FORK), and the PARENT and CHILD handlers are called
  509. in FIFO (first added, first called). */
  510. extern int pthread_atfork (void (*__prepare) (void),
  511. void (*__parent) (void),
  512. void (*__child) (void)) __THROW;
  513. /* Terminate all threads in the program except the calling process.
  514. Should be called just before invoking one of the exec*() functions. */
  515. extern void pthread_kill_other_threads_np (void) __THROW;
  516. __END_DECLS
  517. #endif /* pthread.h */