unistd: Improve fortify with clang
[glibc.git] / support / xthread.h
blob2fdbbb86800771416738082239529be06254cded
1 /* Support functionality for using threads.
2 Copyright (C) 2016-2024 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 SUPPORT_THREAD_H
20 #define SUPPORT_THREAD_H
22 #include <pthread.h>
23 #include <sys/cdefs.h>
24 #include <stdbool.h>
26 __BEGIN_DECLS
28 /* Terminate the process (with exit (0)) after SECONDS have elapsed,
29 from a helper thread. The process is terminated with the exit
30 function, so atexit handlers are executed. */
31 void delayed_exit (int seconds);
33 /* Like delayed_exit, but use _exit (0). */
34 void delayed__exit (int seconds);
36 /* Returns true if Priority Inheritance support CLOCK_MONOTONIC. */
37 bool support_mutex_pi_monotonic (void);
39 /* Terminate the process (with exit status 1) if VALUE is not zero.
40 In that case, print a failure message to standard output mentioning
41 FUNCTION. The process is terminated with the exit function, so
42 atexit handlers are executed. */
43 void xpthread_check_return (const char *function, int value);
45 /* The following functions call the corresponding libpthread functions
46 and terminate the process on error. */
48 void xpthread_barrier_init (pthread_barrier_t *barrier,
49 pthread_barrierattr_t *attr, unsigned int count);
50 void xpthread_barrier_destroy (pthread_barrier_t *barrier);
51 void xpthread_barrierattr_destroy (pthread_barrierattr_t *);
52 void xpthread_barrierattr_init (pthread_barrierattr_t *);
53 void xpthread_barrierattr_setpshared (pthread_barrierattr_t *, int pshared);
54 void xpthread_mutexattr_destroy (pthread_mutexattr_t *);
55 void xpthread_mutexattr_init (pthread_mutexattr_t *);
56 void xpthread_mutexattr_setprotocol (pthread_mutexattr_t *, int);
57 void xpthread_mutexattr_setpshared (pthread_mutexattr_t *, int);
58 void xpthread_mutexattr_setrobust (pthread_mutexattr_t *, int);
59 void xpthread_mutexattr_settype (pthread_mutexattr_t *, int);
60 void xpthread_mutex_init (pthread_mutex_t *, const pthread_mutexattr_t *);
61 void xpthread_mutex_destroy (pthread_mutex_t *);
62 void xpthread_mutex_lock (pthread_mutex_t *mutex);
63 void xpthread_mutex_unlock (pthread_mutex_t *mutex);
64 void xpthread_mutex_consistent (pthread_mutex_t *);
65 void xpthread_spin_lock (pthread_spinlock_t *lock);
66 void xpthread_spin_unlock (pthread_spinlock_t *lock);
67 void xpthread_cond_wait (pthread_cond_t * cond, pthread_mutex_t * mutex);
68 void xpthread_cond_signal (pthread_cond_t *cond);
69 pthread_t xpthread_create (pthread_attr_t *attr,
70 void *(*thread_func) (void *), void *closure);
71 void xpthread_detach (pthread_t thr);
72 void xpthread_cancel (pthread_t thr);
73 void *xpthread_join (pthread_t thr);
74 void xpthread_once (pthread_once_t *guard, void (*func) (void));
75 void xpthread_attr_destroy (pthread_attr_t *attr);
76 void xpthread_attr_init (pthread_attr_t *attr);
77 #ifdef __linux__
78 void xpthread_attr_setaffinity_np (pthread_attr_t *attr,
79 size_t cpusetsize,
80 const cpu_set_t *cpuset);
81 #endif
82 void xpthread_attr_setdetachstate (pthread_attr_t *attr,
83 int detachstate);
84 void xpthread_attr_setstack (pthread_attr_t *attr, void *stackaddr,
85 size_t stacksize);
86 void xpthread_attr_setstacksize (pthread_attr_t *attr,
87 size_t stacksize);
88 void xpthread_attr_setguardsize (pthread_attr_t *attr,
89 size_t guardsize);
91 void xpthread_kill (pthread_t thr, int signo);
93 /* Return the stack size used on support_set_small_thread_stack_size. */
94 size_t support_small_thread_stack_size (void);
95 /* Set the stack size in ATTR to a small value, but still large enough
96 to cover most internal glibc stack usage. */
97 void support_set_small_thread_stack_size (pthread_attr_t *attr);
99 /* Return a pointer to a thread attribute which requests a small
100 stack. The caller must not free this pointer. */
101 pthread_attr_t *support_small_stack_thread_attribute (void);
103 /* This function returns non-zero if pthread_barrier_wait returned
104 PTHREAD_BARRIER_SERIAL_THREAD. */
105 int xpthread_barrier_wait (pthread_barrier_t *barrier);
107 void xpthread_rwlock_init (pthread_rwlock_t *rwlock,
108 const pthread_rwlockattr_t *attr);
109 void xpthread_rwlockattr_init (pthread_rwlockattr_t *attr);
110 void xpthread_rwlockattr_setkind_np (pthread_rwlockattr_t *attr, int pref);
111 void xpthread_rwlock_wrlock (pthread_rwlock_t *rwlock);
112 void xpthread_rwlock_rdlock (pthread_rwlock_t *rwlock);
113 void xpthread_rwlock_unlock (pthread_rwlock_t *rwlock);
114 void xpthread_rwlock_destroy (pthread_rwlock_t *rwlock);
115 pthread_key_t xpthread_key_create (void (*destr_function) (void *));
116 void xpthread_key_delete (pthread_key_t key);
118 __END_DECLS
120 #endif /* SUPPORT_THREAD_H */