blob: e238321b9caf14af72d7f216a1e7c82bbc830471 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#ifndef _PTHREAD_H
2#define _PTHREAD_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Rich Felker455f9682012-09-08 17:14:52 -04007#include <features.h>
Rich Felker0c05bd32012-09-06 23:34:10 -04008
Rich Felker0b44a032011-02-12 00:22:29 -05009#define __NEED_time_t
Rich Felkerd8d19f42011-03-12 21:54:19 -050010#define __NEED_clockid_t
Rich Felker0b44a032011-02-12 00:22:29 -050011#define __NEED_struct_timespec
12#define __NEED_sigset_t
13#define __NEED_pthread_t
Rich Felkere8827562011-02-17 17:16:20 -050014#define __NEED_pthread_attr_t
15#define __NEED_pthread_mutexattr_t
16#define __NEED_pthread_condattr_t
17#define __NEED_pthread_rwlockattr_t
18#define __NEED_pthread_barrierattr_t
19#define __NEED_pthread_mutex_t
20#define __NEED_pthread_cond_t
21#define __NEED_pthread_rwlock_t
22#define __NEED_pthread_barrier_t
23#define __NEED_pthread_spinlock_t
24#define __NEED_pthread_key_t
25#define __NEED_pthread_once_t
Rich Felker0b44a032011-02-12 00:22:29 -050026#define __NEED_size_t
27
28#include <bits/alltypes.h>
29
Rich Felker56b784d2011-02-16 21:21:26 -050030#include <sched.h>
31#include <time.h>
Rich Felker0b44a032011-02-12 00:22:29 -050032
Rich Felker0b44a032011-02-12 00:22:29 -050033#define PTHREAD_CREATE_JOINABLE 0
34#define PTHREAD_CREATE_DETACHED 1
35
36#define PTHREAD_MUTEX_NORMAL 0
37#define PTHREAD_MUTEX_DEFAULT 0
38#define PTHREAD_MUTEX_RECURSIVE 1
39#define PTHREAD_MUTEX_ERRORCHECK 2
40
41#define PTHREAD_MUTEX_STALLED 0
42#define PTHREAD_MUTEX_ROBUST 1
43
44#define PTHREAD_PRIO_NONE 0
45#define PTHREAD_PRIO_INHERIT 1
46#define PTHREAD_PRIO_PROTECT 2
47
48#define PTHREAD_INHERIT_SCHED 0
49#define PTHREAD_EXPLICIT_SCHED 1
50
51#define PTHREAD_SCOPE_SYSTEM 0
52#define PTHREAD_SCOPE_PROCESS 1
53
54#define PTHREAD_PROCESS_PRIVATE 0
55#define PTHREAD_PROCESS_SHARED 1
56
57
Rich Felkerd3675192012-02-29 22:55:08 -050058#define PTHREAD_MUTEX_INITIALIZER {{{0}}}
59#define PTHREAD_RWLOCK_INITIALIZER {{{0}}}
60#define PTHREAD_COND_INITIALIZER {{{0}}}
Rich Felker0b44a032011-02-12 00:22:29 -050061#define PTHREAD_ONCE_INIT 0
62
63
64#define PTHREAD_CANCEL_ENABLE 0
65#define PTHREAD_CANCEL_DISABLE 1
Rich Felker102f6a02015-02-21 22:05:15 -050066#define PTHREAD_CANCEL_MASKED 2
Rich Felker0b44a032011-02-12 00:22:29 -050067
68#define PTHREAD_CANCEL_DEFERRED 0
69#define PTHREAD_CANCEL_ASYNCHRONOUS 1
70
Rich Felker3df3d4f2011-04-01 20:48:02 -040071#define PTHREAD_CANCELED ((void *)-1)
Rich Felker0b44a032011-02-12 00:22:29 -050072
73
74#define PTHREAD_BARRIER_SERIAL_THREAD (-1)
75
76
Rich Felker400c5e52012-09-06 22:44:55 -040077int pthread_create(pthread_t *__restrict, const pthread_attr_t *__restrict, void *(*)(void *), void *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -050078int pthread_detach(pthread_t);
Rich Felker0c05bd32012-09-06 23:34:10 -040079_Noreturn void pthread_exit(void *);
Rich Felker0b44a032011-02-12 00:22:29 -050080int pthread_join(pthread_t, void **);
81
Rich Felkerbf453d62018-10-16 13:48:10 -040082#ifdef __GNUC__
83__attribute__((const))
84#endif
Rich Felker0b44a032011-02-12 00:22:29 -050085pthread_t pthread_self(void);
Rich Felker9205e482011-08-14 15:17:36 -040086
Rich Felker0b44a032011-02-12 00:22:29 -050087int pthread_equal(pthread_t, pthread_t);
Bobby Binghamf1648752014-12-08 20:18:12 -060088#ifndef __cplusplus
Rich Felker9205e482011-08-14 15:17:36 -040089#define pthread_equal(x,y) ((x)==(y))
Bobby Binghamf1648752014-12-08 20:18:12 -060090#endif
Rich Felker0b44a032011-02-12 00:22:29 -050091
92int pthread_setcancelstate(int, int *);
93int pthread_setcanceltype(int, int *);
94void pthread_testcancel(void);
95int pthread_cancel(pthread_t);
96
Rich Felker1e21e782012-11-11 15:38:04 -050097int pthread_getschedparam(pthread_t, int *__restrict, struct sched_param *__restrict);
98int pthread_setschedparam(pthread_t, int, const struct sched_param *);
99int pthread_setschedprio(pthread_t, int);
100
Rich Felker0b44a032011-02-12 00:22:29 -0500101int pthread_once(pthread_once_t *, void (*)(void));
102
Rich Felker400c5e52012-09-06 22:44:55 -0400103int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500104int pthread_mutex_lock(pthread_mutex_t *);
105int pthread_mutex_unlock(pthread_mutex_t *);
106int pthread_mutex_trylock(pthread_mutex_t *);
Rich Felker400c5e52012-09-06 22:44:55 -0400107int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500108int pthread_mutex_destroy(pthread_mutex_t *);
Rich Felker047e4342011-03-17 20:41:37 -0400109int pthread_mutex_consistent(pthread_mutex_t *);
Rich Felker0b44a032011-02-12 00:22:29 -0500110
Rich Felker5c6443a2012-11-17 18:42:16 -0500111int pthread_mutex_getprioceiling(const pthread_mutex_t *__restrict, int *__restrict);
112int pthread_mutex_setprioceiling(pthread_mutex_t *__restrict, int, int *__restrict);
113
Rich Felker400c5e52012-09-06 22:44:55 -0400114int pthread_cond_init(pthread_cond_t *__restrict, const pthread_condattr_t *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500115int pthread_cond_destroy(pthread_cond_t *);
Rich Felker400c5e52012-09-06 22:44:55 -0400116int pthread_cond_wait(pthread_cond_t *__restrict, pthread_mutex_t *__restrict);
117int pthread_cond_timedwait(pthread_cond_t *__restrict, pthread_mutex_t *__restrict, const struct timespec *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500118int pthread_cond_broadcast(pthread_cond_t *);
119int pthread_cond_signal(pthread_cond_t *);
120
Rich Felker400c5e52012-09-06 22:44:55 -0400121int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500122int pthread_rwlock_destroy(pthread_rwlock_t *);
123int pthread_rwlock_rdlock(pthread_rwlock_t *);
124int pthread_rwlock_tryrdlock(pthread_rwlock_t *);
Rich Felker400c5e52012-09-06 22:44:55 -0400125int pthread_rwlock_timedrdlock(pthread_rwlock_t *__restrict, const struct timespec *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500126int pthread_rwlock_wrlock(pthread_rwlock_t *);
127int pthread_rwlock_trywrlock(pthread_rwlock_t *);
Rich Felker400c5e52012-09-06 22:44:55 -0400128int pthread_rwlock_timedwrlock(pthread_rwlock_t *__restrict, const struct timespec *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500129int pthread_rwlock_unlock(pthread_rwlock_t *);
130
131int pthread_spin_init(pthread_spinlock_t *, int);
132int pthread_spin_destroy(pthread_spinlock_t *);
133int pthread_spin_lock(pthread_spinlock_t *);
134int pthread_spin_trylock(pthread_spinlock_t *);
135int pthread_spin_unlock(pthread_spinlock_t *);
136
Rich Felker400c5e52012-09-06 22:44:55 -0400137int pthread_barrier_init(pthread_barrier_t *__restrict, const pthread_barrierattr_t *__restrict, unsigned);
Rich Felker0b44a032011-02-12 00:22:29 -0500138int pthread_barrier_destroy(pthread_barrier_t *);
139int pthread_barrier_wait(pthread_barrier_t *);
140
141int pthread_key_create(pthread_key_t *, void (*)(void *));
142int pthread_key_delete(pthread_key_t);
143void *pthread_getspecific(pthread_key_t);
144int pthread_setspecific(pthread_key_t, const void *);
145
146int pthread_attr_init(pthread_attr_t *);
147int pthread_attr_destroy(pthread_attr_t *);
148
Rich Felker400c5e52012-09-06 22:44:55 -0400149int pthread_attr_getguardsize(const pthread_attr_t *__restrict, size_t *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500150int pthread_attr_setguardsize(pthread_attr_t *, size_t);
Rich Felker400c5e52012-09-06 22:44:55 -0400151int pthread_attr_getstacksize(const pthread_attr_t *__restrict, size_t *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500152int pthread_attr_setstacksize(pthread_attr_t *, size_t);
Rich Felkerf1821fc2011-03-11 09:46:31 -0500153int pthread_attr_getdetachstate(const pthread_attr_t *, int *);
Rich Felker0b44a032011-02-12 00:22:29 -0500154int pthread_attr_setdetachstate(pthread_attr_t *, int);
Rich Felker400c5e52012-09-06 22:44:55 -0400155int pthread_attr_getstack(const pthread_attr_t *__restrict, void **__restrict, size_t *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500156int pthread_attr_setstack(pthread_attr_t *, void *, size_t);
Rich Felker400c5e52012-09-06 22:44:55 -0400157int pthread_attr_getscope(const pthread_attr_t *__restrict, int *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500158int pthread_attr_setscope(pthread_attr_t *, int);
Rich Felker400c5e52012-09-06 22:44:55 -0400159int pthread_attr_getschedpolicy(const pthread_attr_t *__restrict, int *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500160int pthread_attr_setschedpolicy(pthread_attr_t *, int);
Rich Felker400c5e52012-09-06 22:44:55 -0400161int pthread_attr_getschedparam(const pthread_attr_t *__restrict, struct sched_param *__restrict);
162int pthread_attr_setschedparam(pthread_attr_t *__restrict, const struct sched_param *__restrict);
163int pthread_attr_getinheritsched(const pthread_attr_t *__restrict, int *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500164int pthread_attr_setinheritsched(pthread_attr_t *, int);
165
166int pthread_mutexattr_destroy(pthread_mutexattr_t *);
Rich Felker400c5e52012-09-06 22:44:55 -0400167int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *__restrict, int *__restrict);
168int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *__restrict, int *__restrict);
169int pthread_mutexattr_getpshared(const pthread_mutexattr_t *__restrict, int *__restrict);
170int pthread_mutexattr_getrobust(const pthread_mutexattr_t *__restrict, int *__restrict);
171int pthread_mutexattr_gettype(const pthread_mutexattr_t *__restrict, int *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500172int pthread_mutexattr_init(pthread_mutexattr_t *);
173int pthread_mutexattr_setprioceiling(pthread_mutexattr_t *, int);
174int pthread_mutexattr_setprotocol(pthread_mutexattr_t *, int);
175int pthread_mutexattr_setpshared(pthread_mutexattr_t *, int);
176int pthread_mutexattr_setrobust(pthread_mutexattr_t *, int);
177int pthread_mutexattr_settype(pthread_mutexattr_t *, int);
178
Rich Felker7d57e052011-03-07 16:45:48 -0500179int pthread_condattr_init(pthread_condattr_t *);
180int pthread_condattr_destroy(pthread_condattr_t *);
181int pthread_condattr_setclock(pthread_condattr_t *, clockid_t);
182int pthread_condattr_setpshared(pthread_condattr_t *, int);
Rich Felker400c5e52012-09-06 22:44:55 -0400183int pthread_condattr_getclock(const pthread_condattr_t *__restrict, clockid_t *__restrict);
184int pthread_condattr_getpshared(const pthread_condattr_t *__restrict, int *__restrict);
Rich Felker7d57e052011-03-07 16:45:48 -0500185
186int pthread_rwlockattr_init(pthread_rwlockattr_t *);
187int pthread_rwlockattr_destroy(pthread_rwlockattr_t *);
188int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int);
Rich Felker400c5e52012-09-06 22:44:55 -0400189int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
Rich Felker7d57e052011-03-07 16:45:48 -0500190
Rich Felker0b44a032011-02-12 00:22:29 -0500191int pthread_barrierattr_destroy(pthread_barrierattr_t *);
Rich Felker400c5e52012-09-06 22:44:55 -0400192int pthread_barrierattr_getpshared(const pthread_barrierattr_t *__restrict, int *__restrict);
Rich Felker0b44a032011-02-12 00:22:29 -0500193int pthread_barrierattr_init(pthread_barrierattr_t *);
194int pthread_barrierattr_setpshared(pthread_barrierattr_t *, int);
195
Rich Felkere9417ff2011-02-18 19:52:42 -0500196int pthread_atfork(void (*)(void), void (*)(void), void (*)(void));
197
Rich Felkerddd87b22011-05-30 11:31:07 -0400198int pthread_getconcurrency(void);
199int pthread_setconcurrency(int);
200
Rich Felker5c6443a2012-11-17 18:42:16 -0500201int pthread_getcpuclockid(pthread_t, clockid_t *);
202
Rich Felkerafc35d52012-02-09 02:33:08 -0500203struct __ptcb {
204 void (*__f)(void *);
205 void *__x;
206 struct __ptcb *__next;
207};
Rich Felker0b44a032011-02-12 00:22:29 -0500208
Rich Felkerafc35d52012-02-09 02:33:08 -0500209void _pthread_cleanup_push(struct __ptcb *, void (*)(void *), void *);
210void _pthread_cleanup_pop(struct __ptcb *, int);
Rich Felker0b44a032011-02-12 00:22:29 -0500211
Rich Felkerafc35d52012-02-09 02:33:08 -0500212#define pthread_cleanup_push(f, x) do { struct __ptcb __cb; _pthread_cleanup_push(&__cb, f, x);
213#define pthread_cleanup_pop(r) _pthread_cleanup_pop(&__cb, (r)); } while(0)
Rich Felker0b44a032011-02-12 00:22:29 -0500214
Rich Felker0b2764d2013-03-31 23:27:57 -0400215#ifdef _GNU_SOURCE
Rich Felker7406fdf2013-08-10 21:41:05 -0400216struct cpu_set_t;
217int pthread_getaffinity_np(pthread_t, size_t, struct cpu_set_t *);
218int pthread_setaffinity_np(pthread_t, size_t, const struct cpu_set_t *);
Rich Felker0b2764d2013-03-31 23:27:57 -0400219int pthread_getattr_np(pthread_t, pthread_attr_t *);
Felix Janda8fb28b02016-09-16 20:54:00 -0400220int pthread_setname_np(pthread_t, const char *);
Rich Felker31fb1742016-11-08 12:09:05 -0500221int pthread_getattr_default_np(pthread_attr_t *);
222int pthread_setattr_default_np(const pthread_attr_t *);
Bobby Bingham3d981462016-05-07 13:48:21 -0500223int pthread_tryjoin_np(pthread_t, void **);
224int pthread_timedjoin_np(pthread_t, void **, const struct timespec *);
Rich Felker0b2764d2013-03-31 23:27:57 -0400225#endif
226
Rich Felker0b44a032011-02-12 00:22:29 -0500227#ifdef __cplusplus
228}
229#endif
230#endif