pthread.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. #ifndef _PTHREAD_H
  2. #define _PTHREAD_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. #define __NEED_time_t
  8. #define __NEED_clockid_t
  9. #define __NEED_struct_timespec
  10. #define __NEED_sigset_t
  11. #define __NEED_pthread_t
  12. #define __NEED_pthread_attr_t
  13. #define __NEED_pthread_mutexattr_t
  14. #define __NEED_pthread_condattr_t
  15. #define __NEED_pthread_rwlockattr_t
  16. #define __NEED_pthread_barrierattr_t
  17. #define __NEED_pthread_mutex_t
  18. #define __NEED_pthread_cond_t
  19. #define __NEED_pthread_rwlock_t
  20. #define __NEED_pthread_barrier_t
  21. #define __NEED_pthread_spinlock_t
  22. #define __NEED_pthread_key_t
  23. #define __NEED_pthread_once_t
  24. #define __NEED_size_t
  25. #include <bits/alltypes.h>
  26. #include <sched.h>
  27. #include <time.h>
  28. #define PTHREAD_CREATE_JOINABLE 0
  29. #define PTHREAD_CREATE_DETACHED 1
  30. #define PTHREAD_MUTEX_NORMAL 0
  31. #define PTHREAD_MUTEX_DEFAULT 0
  32. #define PTHREAD_MUTEX_RECURSIVE 1
  33. #define PTHREAD_MUTEX_ERRORCHECK 2
  34. #define PTHREAD_MUTEX_STALLED 0
  35. #define PTHREAD_MUTEX_ROBUST 1
  36. #define PTHREAD_PRIO_NONE 0
  37. #define PTHREAD_PRIO_INHERIT 1
  38. #define PTHREAD_PRIO_PROTECT 2
  39. #define PTHREAD_INHERIT_SCHED 0
  40. #define PTHREAD_EXPLICIT_SCHED 1
  41. #define PTHREAD_SCOPE_SYSTEM 0
  42. #define PTHREAD_SCOPE_PROCESS 1
  43. #define PTHREAD_PROCESS_PRIVATE 0
  44. #define PTHREAD_PROCESS_SHARED 1
  45. #define PTHREAD_MUTEX_INITIALIZER {{{0}}}
  46. #define PTHREAD_RWLOCK_INITIALIZER {{{0}}}
  47. #define PTHREAD_COND_INITIALIZER {{{0}}}
  48. #define PTHREAD_ONCE_INIT 0
  49. #define PTHREAD_CANCEL_ENABLE 0
  50. #define PTHREAD_CANCEL_DISABLE 1
  51. #define PTHREAD_CANCEL_MASKED 2
  52. #define PTHREAD_CANCEL_DEFERRED 0
  53. #define PTHREAD_CANCEL_ASYNCHRONOUS 1
  54. #define PTHREAD_CANCELED ((void *)-1)
  55. #define PTHREAD_BARRIER_SERIAL_THREAD (-1)
  56. #define PTHREAD_NULL ((pthread_t)0)
  57. int pthread_create(pthread_t *__restrict, const pthread_attr_t *__restrict, void *(*)(void *), void *__restrict);
  58. int pthread_detach(pthread_t);
  59. _Noreturn void pthread_exit(void *);
  60. int pthread_join(pthread_t, void **);
  61. #ifdef __GNUC__
  62. __attribute__((const))
  63. #endif
  64. pthread_t pthread_self(void);
  65. int pthread_equal(pthread_t, pthread_t);
  66. #ifndef __cplusplus
  67. #define pthread_equal(x,y) ((x)==(y))
  68. #endif
  69. int pthread_setcancelstate(int, int *);
  70. int pthread_setcanceltype(int, int *);
  71. void pthread_testcancel(void);
  72. int pthread_cancel(pthread_t);
  73. int pthread_getschedparam(pthread_t, int *__restrict, struct sched_param *__restrict);
  74. int pthread_setschedparam(pthread_t, int, const struct sched_param *);
  75. int pthread_setschedprio(pthread_t, int);
  76. int pthread_once(pthread_once_t *, void (*)(void));
  77. int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
  78. int pthread_mutex_lock(pthread_mutex_t *);
  79. int pthread_mutex_unlock(pthread_mutex_t *);
  80. int pthread_mutex_trylock(pthread_mutex_t *);
  81. int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
  82. int pthread_mutex_destroy(pthread_mutex_t *);
  83. int pthread_mutex_consistent(pthread_mutex_t *);
  84. int pthread_mutex_getprioceiling(const pthread_mutex_t *__restrict, int *__restrict);
  85. int pthread_mutex_setprioceiling(pthread_mutex_t *__restrict, int, int *__restrict);
  86. int pthread_cond_init(pthread_cond_t *__restrict, const pthread_condattr_t *__restrict);
  87. int pthread_cond_destroy(pthread_cond_t *);
  88. int pthread_cond_wait(pthread_cond_t *__restrict, pthread_mutex_t *__restrict);
  89. int pthread_cond_timedwait(pthread_cond_t *__restrict, pthread_mutex_t *__restrict, const struct timespec *__restrict);
  90. int pthread_cond_broadcast(pthread_cond_t *);
  91. int pthread_cond_signal(pthread_cond_t *);
  92. int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict);
  93. int pthread_rwlock_destroy(pthread_rwlock_t *);
  94. int pthread_rwlock_rdlock(pthread_rwlock_t *);
  95. int pthread_rwlock_tryrdlock(pthread_rwlock_t *);
  96. int pthread_rwlock_timedrdlock(pthread_rwlock_t *__restrict, const struct timespec *__restrict);
  97. int pthread_rwlock_wrlock(pthread_rwlock_t *);
  98. int pthread_rwlock_trywrlock(pthread_rwlock_t *);
  99. int pthread_rwlock_timedwrlock(pthread_rwlock_t *__restrict, const struct timespec *__restrict);
  100. int pthread_rwlock_unlock(pthread_rwlock_t *);
  101. int pthread_spin_init(pthread_spinlock_t *, int);
  102. int pthread_spin_destroy(pthread_spinlock_t *);
  103. int pthread_spin_lock(pthread_spinlock_t *);
  104. int pthread_spin_trylock(pthread_spinlock_t *);
  105. int pthread_spin_unlock(pthread_spinlock_t *);
  106. int pthread_barrier_init(pthread_barrier_t *__restrict, const pthread_barrierattr_t *__restrict, unsigned);
  107. int pthread_barrier_destroy(pthread_barrier_t *);
  108. int pthread_barrier_wait(pthread_barrier_t *);
  109. int pthread_key_create(pthread_key_t *, void (*)(void *));
  110. int pthread_key_delete(pthread_key_t);
  111. void *pthread_getspecific(pthread_key_t);
  112. int pthread_setspecific(pthread_key_t, const void *);
  113. int pthread_attr_init(pthread_attr_t *);
  114. int pthread_attr_destroy(pthread_attr_t *);
  115. int pthread_attr_getguardsize(const pthread_attr_t *__restrict, size_t *__restrict);
  116. int pthread_attr_setguardsize(pthread_attr_t *, size_t);
  117. int pthread_attr_getstacksize(const pthread_attr_t *__restrict, size_t *__restrict);
  118. int pthread_attr_setstacksize(pthread_attr_t *, size_t);
  119. int pthread_attr_getdetachstate(const pthread_attr_t *, int *);
  120. int pthread_attr_setdetachstate(pthread_attr_t *, int);
  121. int pthread_attr_getstack(const pthread_attr_t *__restrict, void **__restrict, size_t *__restrict);
  122. int pthread_attr_setstack(pthread_attr_t *, void *, size_t);
  123. int pthread_attr_getscope(const pthread_attr_t *__restrict, int *__restrict);
  124. int pthread_attr_setscope(pthread_attr_t *, int);
  125. int pthread_attr_getschedpolicy(const pthread_attr_t *__restrict, int *__restrict);
  126. int pthread_attr_setschedpolicy(pthread_attr_t *, int);
  127. int pthread_attr_getschedparam(const pthread_attr_t *__restrict, struct sched_param *__restrict);
  128. int pthread_attr_setschedparam(pthread_attr_t *__restrict, const struct sched_param *__restrict);
  129. int pthread_attr_getinheritsched(const pthread_attr_t *__restrict, int *__restrict);
  130. int pthread_attr_setinheritsched(pthread_attr_t *, int);
  131. int pthread_mutexattr_destroy(pthread_mutexattr_t *);
  132. int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *__restrict, int *__restrict);
  133. int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *__restrict, int *__restrict);
  134. int pthread_mutexattr_getpshared(const pthread_mutexattr_t *__restrict, int *__restrict);
  135. int pthread_mutexattr_getrobust(const pthread_mutexattr_t *__restrict, int *__restrict);
  136. int pthread_mutexattr_gettype(const pthread_mutexattr_t *__restrict, int *__restrict);
  137. int pthread_mutexattr_init(pthread_mutexattr_t *);
  138. int pthread_mutexattr_setprioceiling(pthread_mutexattr_t *, int);
  139. int pthread_mutexattr_setprotocol(pthread_mutexattr_t *, int);
  140. int pthread_mutexattr_setpshared(pthread_mutexattr_t *, int);
  141. int pthread_mutexattr_setrobust(pthread_mutexattr_t *, int);
  142. int pthread_mutexattr_settype(pthread_mutexattr_t *, int);
  143. int pthread_condattr_init(pthread_condattr_t *);
  144. int pthread_condattr_destroy(pthread_condattr_t *);
  145. int pthread_condattr_setclock(pthread_condattr_t *, clockid_t);
  146. int pthread_condattr_setpshared(pthread_condattr_t *, int);
  147. int pthread_condattr_getclock(const pthread_condattr_t *__restrict, clockid_t *__restrict);
  148. int pthread_condattr_getpshared(const pthread_condattr_t *__restrict, int *__restrict);
  149. int pthread_rwlockattr_init(pthread_rwlockattr_t *);
  150. int pthread_rwlockattr_destroy(pthread_rwlockattr_t *);
  151. int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int);
  152. int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
  153. int pthread_barrierattr_destroy(pthread_barrierattr_t *);
  154. int pthread_barrierattr_getpshared(const pthread_barrierattr_t *__restrict, int *__restrict);
  155. int pthread_barrierattr_init(pthread_barrierattr_t *);
  156. int pthread_barrierattr_setpshared(pthread_barrierattr_t *, int);
  157. int pthread_atfork(void (*)(void), void (*)(void), void (*)(void));
  158. int pthread_getconcurrency(void);
  159. int pthread_setconcurrency(int);
  160. int pthread_getcpuclockid(pthread_t, clockid_t *);
  161. struct __ptcb {
  162. void (*__f)(void *);
  163. void *__x;
  164. struct __ptcb *__next;
  165. };
  166. void _pthread_cleanup_push(struct __ptcb *, void (*)(void *), void *);
  167. void _pthread_cleanup_pop(struct __ptcb *, int);
  168. #define pthread_cleanup_push(f, x) do { struct __ptcb __cb; _pthread_cleanup_push(&__cb, f, x);
  169. #define pthread_cleanup_pop(r) _pthread_cleanup_pop(&__cb, (r)); } while(0)
  170. #ifdef _GNU_SOURCE
  171. struct cpu_set_t;
  172. int pthread_getaffinity_np(pthread_t, size_t, struct cpu_set_t *);
  173. int pthread_setaffinity_np(pthread_t, size_t, const struct cpu_set_t *);
  174. int pthread_getattr_np(pthread_t, pthread_attr_t *);
  175. int pthread_setname_np(pthread_t, const char *);
  176. int pthread_getname_np(pthread_t, char *, size_t);
  177. int pthread_getattr_default_np(pthread_attr_t *);
  178. int pthread_setattr_default_np(const pthread_attr_t *);
  179. int pthread_tryjoin_np(pthread_t, void **);
  180. int pthread_timedjoin_np(pthread_t, void **, const struct timespec *);
  181. #endif
  182. #if _REDIR_TIME64
  183. __REDIR(pthread_mutex_timedlock, __pthread_mutex_timedlock_time64);
  184. __REDIR(pthread_cond_timedwait, __pthread_cond_timedwait_time64);
  185. __REDIR(pthread_rwlock_timedrdlock, __pthread_rwlock_timedrdlock_time64);
  186. __REDIR(pthread_rwlock_timedwrlock, __pthread_rwlock_timedwrlock_time64);
  187. #ifdef _GNU_SOURCE
  188. __REDIR(pthread_timedjoin_np, __pthread_timedjoin_np_time64);
  189. #endif
  190. #endif
  191. #ifdef __cplusplus
  192. }
  193. #endif
  194. #endif