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