pthread.h 24 KB

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