Update build-many-glibcs.py for binutils ia64 obsoletion.
[glibc.git] / sysdeps / pthread / threads.h
blob0ac489b4a12ee3589bdb472d4f1db5a0bb487b1f
1 /* ISO C11 Standard: 7.26 - Thread support library <threads.h>.
2 Copyright (C) 2018-2020 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #ifndef _THREADS_H
20 #define _THREADS_H 1
22 #include <features.h>
23 #include <time.h>
25 __BEGIN_DECLS
27 #include <bits/thread-shared-types.h>
28 #include <bits/types/struct_timespec.h>
30 #ifndef __cplusplus
31 # define thread_local _Thread_local
32 #endif
34 #define TSS_DTOR_ITERATIONS 4
35 typedef __tss_t tss_t;
36 typedef void (*tss_dtor_t) (void*);
38 typedef __thrd_t thrd_t;
39 typedef int (*thrd_start_t) (void*);
41 /* Exit and error codes. */
42 enum
44 thrd_success = 0,
45 thrd_busy = 1,
46 thrd_error = 2,
47 thrd_nomem = 3,
48 thrd_timedout = 4
51 /* Mutex types. */
52 enum
54 mtx_plain = 0,
55 mtx_recursive = 1,
56 mtx_timed = 2
59 typedef __once_flag once_flag;
60 #define ONCE_FLAG_INIT __ONCE_FLAG_INIT
62 typedef union
64 char __size[__SIZEOF_PTHREAD_MUTEX_T];
65 long int __align __LOCK_ALIGNMENT;
66 } mtx_t;
68 typedef union
70 char __size[__SIZEOF_PTHREAD_COND_T];
71 __extension__ long long int __align __LOCK_ALIGNMENT;
72 } cnd_t;
74 /* Threads functions. */
76 /* Create a new thread executing the function __FUNC. Arguments for __FUNC
77 are passed through __ARG. If succesful, __THR is set to new thread
78 identifier. */
79 extern int thrd_create (thrd_t *__thr, thrd_start_t __func, void *__arg);
81 /* Check if __LHS and __RHS point to the same thread. */
82 extern int thrd_equal (thrd_t __lhs, thrd_t __rhs);
84 /* Return current thread identifier. */
85 extern thrd_t thrd_current (void);
87 /* Block current thread execution for at least the time pointed by
88 __TIME_POINT. The current thread may resume if receives a signal. In
89 that case, if __REMAINING is not NULL, the remaining time is stored in
90 the object pointed by it. */
91 extern int thrd_sleep (const struct timespec *__time_point,
92 struct timespec *__remaining);
94 /* Terminate current thread execution, cleaning up any thread local
95 storage and freeing resources. Returns the value specified in __RES. */
96 extern void thrd_exit (int __res) __attribute__ ((__noreturn__));
98 /* Detach the thread identified by __THR from the current environment
99 (it does not allow join or wait for it). */
100 extern int thrd_detach (thrd_t __thr);
102 /* Block current thread until execution of __THR is complete. In case that
103 __RES is not NULL, will store the return value of __THR when exiting. */
104 extern int thrd_join (thrd_t __thr, int *__res);
106 /* Stop current thread execution and call the scheduler to decide which
107 thread should execute next. The current thread may be selected by the
108 scheduler to keep running. */
109 extern void thrd_yield (void);
111 #ifdef __USE_EXTERN_INLINES
112 /* Optimizations. */
113 __extern_inline int
114 thrd_equal (thrd_t __thread1, thrd_t __thread2)
116 return __thread1 == __thread2;
118 #endif
121 /* Mutex functions. */
123 /* Creates a new mutex object with type __TYPE. If successful the new
124 object is pointed by __MUTEX. */
125 extern int mtx_init (mtx_t *__mutex, int __type);
127 /* Block the current thread until the mutex pointed to by __MUTEX is
128 unlocked. In that case current thread will not be blocked. */
129 extern int mtx_lock (mtx_t *__mutex);
131 /* Block the current thread until the mutex pointed by __MUTEX is unlocked
132 or time pointed by __TIME_POINT is reached. In case the mutex is unlock,
133 the current thread will not be blocked. */
134 extern int mtx_timedlock (mtx_t *__restrict __mutex,
135 const struct timespec *__restrict __time_point);
137 /* Try to lock the mutex pointed by __MUTEX without blocking. If the mutex
138 is free the current threads takes control of it, otherwise it returns
139 immediately. */
140 extern int mtx_trylock (mtx_t *__mutex);
142 /* Unlock the mutex pointed by __MUTEX. It may potentially awake other
143 threads waiting on this mutex. */
144 extern int mtx_unlock (mtx_t *__mutex);
146 /* Destroy the mutex object pointed by __MUTEX. */
147 extern void mtx_destroy (mtx_t *__mutex);
150 /* Call function __FUNC exactly once, even if invoked from several threads.
151 All calls must be made with the same __FLAGS object. */
152 extern void call_once (once_flag *__flag, void (*__func)(void));
155 /* Condition variable functions. */
157 /* Initialize new condition variable pointed by __COND. */
158 extern int cnd_init (cnd_t *__cond);
160 /* Unblock one thread that currently waits on condition variable pointed
161 by __COND. */
162 extern int cnd_signal (cnd_t *__cond);
164 /* Unblock all threads currently waiting on condition variable pointed by
165 __COND. */
166 extern int cnd_broadcast (cnd_t *__cond);
168 /* Block current thread on the condition variable pointed by __COND. */
169 extern int cnd_wait (cnd_t *__cond, mtx_t *__mutex);
171 /* Block current thread on the condition variable until condition variable
172 pointed by __COND is signaled or time pointed by __TIME_POINT is
173 reached. */
174 extern int cnd_timedwait (cnd_t *__restrict __cond,
175 mtx_t *__restrict __mutex,
176 const struct timespec *__restrict __time_point);
178 /* Destroy condition variable pointed by __cond and free all of its
179 resources. */
180 extern void cnd_destroy (cnd_t *__COND);
183 /* Thread specific storage functions. */
185 /* Create new thread-specific storage key and stores it in the object pointed
186 by __TSS_ID. If __DESTRUCTOR is not NULL, the function will be called when
187 the thread terminates. */
188 extern int tss_create (tss_t *__tss_id, tss_dtor_t __destructor);
190 /* Return the value held in thread-specific storage for the current thread
191 identified by __TSS_ID. */
192 extern void *tss_get (tss_t __tss_id);
194 /* Sets the value of the thread-specific storage identified by __TSS_ID for
195 the current thread to __VAL. */
196 extern int tss_set (tss_t __tss_id, void *__val);
198 /* Destroys the thread-specific storage identified by __TSS_ID. The
199 destructor is not called until thrd_exit is called. */
200 extern void tss_delete (tss_t __tss_id);
202 __END_DECLS
204 #endif /* _THREADS_H */