avoid "inline" in public headers for strict c89 compatibility
[musl] / include / pthread.h
1 #ifndef _PTHREAD_H
2 #define _PTHREAD_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
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
26 #include <bits/alltypes.h>
27
28 #include <sched.h>
29 #include <time.h>
30
31 #define PTHREAD_CREATE_JOINABLE 0
32 #define PTHREAD_CREATE_DETACHED 1
33
34 #define PTHREAD_MUTEX_NORMAL 0
35 #define PTHREAD_MUTEX_DEFAULT 0
36 #define PTHREAD_MUTEX_RECURSIVE 1
37 #define PTHREAD_MUTEX_ERRORCHECK 2
38
39 #define PTHREAD_MUTEX_STALLED 0
40 #define PTHREAD_MUTEX_ROBUST 1
41
42 #define PTHREAD_PRIO_NONE 0
43 #define PTHREAD_PRIO_INHERIT 1
44 #define PTHREAD_PRIO_PROTECT 2
45
46 #define PTHREAD_INHERIT_SCHED 0
47 #define PTHREAD_EXPLICIT_SCHED 1
48
49 #define PTHREAD_SCOPE_SYSTEM 0
50 #define PTHREAD_SCOPE_PROCESS 1
51
52 #define PTHREAD_PROCESS_PRIVATE 0
53 #define PTHREAD_PROCESS_SHARED 1
54
55
56 #define PTHREAD_MUTEX_INITIALIZER {{{0}}}
57 #define PTHREAD_RWLOCK_INITIALIZER {{{0}}}
58 #define PTHREAD_COND_INITIALIZER {{{0}}}
59 #define PTHREAD_ONCE_INIT 0
60
61
62 #define PTHREAD_CANCEL_ENABLE 0
63 #define PTHREAD_CANCEL_DISABLE 1
64
65 #define PTHREAD_CANCEL_DEFERRED 0
66 #define PTHREAD_CANCEL_ASYNCHRONOUS 1
67
68 #define PTHREAD_CANCELED ((void *)-1)
69
70
71 #define PTHREAD_BARRIER_SERIAL_THREAD (-1)
72
73
74 int pthread_create(pthread_t *, const pthread_attr_t *, void *(*)(void *), void *);
75 int pthread_detach(pthread_t);
76 void pthread_exit(void *);
77 int pthread_join(pthread_t, void **);
78
79 #ifdef __GNUC__
80 __attribute__((const))
81 #endif
82 pthread_t pthread_self(void);
83
84 int pthread_equal(pthread_t, pthread_t);
85 #define pthread_equal(x,y) ((x)==(y))
86
87 int pthread_setcancelstate(int, int *);
88 int pthread_setcanceltype(int, int *);
89 void pthread_testcancel(void);
90 int pthread_cancel(pthread_t);
91
92 int pthread_once(pthread_once_t *, void (*)(void));
93
94 int pthread_mutex_init(pthread_mutex_t *, const pthread_mutexattr_t *);
95 int pthread_mutex_lock(pthread_mutex_t *);
96 int pthread_mutex_unlock(pthread_mutex_t *);
97 int pthread_mutex_trylock(pthread_mutex_t *);
98 int pthread_mutex_timedlock(pthread_mutex_t *, const struct timespec *);
99 int pthread_mutex_destroy(pthread_mutex_t *);
100 int pthread_mutex_consistent(pthread_mutex_t *);
101
102 int pthread_cond_init(pthread_cond_t *, const pthread_condattr_t *);
103 int pthread_cond_destroy(pthread_cond_t *);
104 int pthread_cond_wait(pthread_cond_t *, pthread_mutex_t *);
105 int pthread_cond_timedwait(pthread_cond_t *, pthread_mutex_t *, const struct timespec *);
106 int pthread_cond_broadcast(pthread_cond_t *);
107 int pthread_cond_signal(pthread_cond_t *);
108
109 int pthread_rwlock_init(pthread_rwlock_t *, const pthread_rwlockattr_t *);
110 int pthread_rwlock_destroy(pthread_rwlock_t *);
111 int pthread_rwlock_rdlock(pthread_rwlock_t *);
112 int pthread_rwlock_tryrdlock(pthread_rwlock_t *);
113 int pthread_rwlock_timedrdlock(pthread_rwlock_t *, const struct timespec *);
114 int pthread_rwlock_wrlock(pthread_rwlock_t *);
115 int pthread_rwlock_trywrlock(pthread_rwlock_t *);
116 int pthread_rwlock_timedwrlock(pthread_rwlock_t *, const struct timespec *);
117 int pthread_rwlock_unlock(pthread_rwlock_t *);
118
119 int pthread_spin_init(pthread_spinlock_t *, int);
120 int pthread_spin_destroy(pthread_spinlock_t *);
121 int pthread_spin_lock(pthread_spinlock_t *);
122 int pthread_spin_trylock(pthread_spinlock_t *);
123 int pthread_spin_unlock(pthread_spinlock_t *);
124
125 int pthread_barrier_init(pthread_barrier_t *, const pthread_barrierattr_t *, unsigned);
126 int pthread_barrier_destroy(pthread_barrier_t *);
127 int pthread_barrier_wait(pthread_barrier_t *);
128
129 int pthread_key_create(pthread_key_t *, void (*)(void *));
130 int pthread_key_delete(pthread_key_t);
131 void *pthread_getspecific(pthread_key_t);
132 int pthread_setspecific(pthread_key_t, const void *);
133
134 int pthread_attr_init(pthread_attr_t *);
135 int pthread_attr_destroy(pthread_attr_t *);
136
137 int pthread_attr_getguardsize(const pthread_attr_t *, size_t *);
138 int pthread_attr_setguardsize(pthread_attr_t *, size_t);
139 int pthread_attr_getstacksize(const pthread_attr_t *, size_t *);
140 int pthread_attr_setstacksize(pthread_attr_t *, size_t);
141 int pthread_attr_getdetachstate(const pthread_attr_t *, int *);
142 int pthread_attr_setdetachstate(pthread_attr_t *, int);
143 int pthread_attr_getstack(const pthread_attr_t *, void **, size_t *);
144 int pthread_attr_setstack(pthread_attr_t *, void *, size_t);
145 int pthread_attr_getscope(const pthread_attr_t *, int *);
146 int pthread_attr_setscope(pthread_attr_t *, int);
147 int pthread_attr_getschedpolicy(const pthread_attr_t *, int *);
148 int pthread_attr_setschedpolicy(pthread_attr_t *, int);
149 int pthread_attr_getschedparam(const pthread_attr_t *, struct sched_param *);
150 int pthread_attr_setschedparam(pthread_attr_t *, const struct sched_param *);
151 int pthread_attr_getinheritsched(const pthread_attr_t *, int *);
152 int pthread_attr_setinheritsched(pthread_attr_t *, int);
153
154 int pthread_mutexattr_destroy(pthread_mutexattr_t *);
155 int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *, int *);
156 int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *, int *);
157 int pthread_mutexattr_getpshared(const pthread_mutexattr_t *, int *);
158 int pthread_mutexattr_getrobust(const pthread_mutexattr_t *, int *);
159 int pthread_mutexattr_gettype(const pthread_mutexattr_t *, int *);
160 int pthread_mutexattr_init(pthread_mutexattr_t *);
161 int pthread_mutexattr_setprioceiling(pthread_mutexattr_t *, int);
162 int pthread_mutexattr_setprotocol(pthread_mutexattr_t *, int);
163 int pthread_mutexattr_setpshared(pthread_mutexattr_t *, int);
164 int pthread_mutexattr_setrobust(pthread_mutexattr_t *, int);
165 int pthread_mutexattr_settype(pthread_mutexattr_t *, int);
166
167 int pthread_condattr_init(pthread_condattr_t *);
168 int pthread_condattr_destroy(pthread_condattr_t *);
169 int pthread_condattr_setclock(pthread_condattr_t *, clockid_t);
170 int pthread_condattr_setpshared(pthread_condattr_t *, int);
171 int pthread_condattr_getclock(const pthread_condattr_t *, clockid_t *);
172 int pthread_condattr_getpshared(const pthread_condattr_t *, int *);
173
174 int pthread_rwlockattr_init(pthread_rwlockattr_t *);
175 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *);
176 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int);
177 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *, int *);
178
179 int pthread_barrierattr_destroy(pthread_barrierattr_t *);
180 int pthread_barrierattr_getpshared(const pthread_barrierattr_t *, int *);
181 int pthread_barrierattr_init(pthread_barrierattr_t *);
182 int pthread_barrierattr_setpshared(pthread_barrierattr_t *, int);
183
184 int pthread_atfork(void (*)(void), void (*)(void), void (*)(void));
185
186 int pthread_getconcurrency(void);
187 int pthread_setconcurrency(int);
188
189 struct __ptcb {
190         void (*__f)(void *);
191         void *__x;
192         struct __ptcb *__next;
193 };
194
195 void _pthread_cleanup_push(struct __ptcb *, void (*)(void *), void *);
196 void _pthread_cleanup_pop(struct __ptcb *, int);
197
198 #define pthread_cleanup_push(f, x) do { struct __ptcb __cb; _pthread_cleanup_push(&__cb, f, x);
199 #define pthread_cleanup_pop(r) _pthread_cleanup_pop(&__cb, (r)); } while(0)
200
201 #ifdef __cplusplus
202 }
203 #endif
204 #endif