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