util: move pipe_barrier into src/util and rename to util_barrier
[mesa.git] / src / util / u_thread.h
1 /**************************************************************************
2 *
3 * Copyright 1999-2006 Brian Paul
4 * Copyright 2008 VMware, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 *
25 **************************************************************************/
26
27 #ifndef U_THREAD_H_
28 #define U_THREAD_H_
29
30 #include <stdint.h>
31 #include <stdbool.h>
32
33 #include "c11/threads.h"
34
35 #ifdef HAVE_PTHREAD
36 #include <signal.h>
37 #endif
38
39
40 static inline thrd_t u_thread_create(int (*routine)(void *), void *param)
41 {
42 thrd_t thread;
43 #ifdef HAVE_PTHREAD
44 sigset_t saved_set, new_set;
45 int ret;
46
47 sigfillset(&new_set);
48 pthread_sigmask(SIG_SETMASK, &new_set, &saved_set);
49 ret = thrd_create( &thread, routine, param );
50 pthread_sigmask(SIG_SETMASK, &saved_set, NULL);
51 #else
52 int ret;
53 ret = thrd_create( &thread, routine, param );
54 #endif
55 if (ret)
56 return 0;
57
58 return thread;
59 }
60
61 static inline void u_thread_setname( const char *name )
62 {
63 #if defined(HAVE_PTHREAD)
64 # if defined(__GNU_LIBRARY__) && defined(__GLIBC__) && defined(__GLIBC_MINOR__) && \
65 (__GLIBC__ >= 3 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 12))
66 pthread_setname_np(pthread_self(), name);
67 # endif
68 #endif
69 (void)name;
70 }
71
72 /*
73 * Thread statistics.
74 */
75
76 /* Return the time of a thread's CPU time clock. */
77 static inline int64_t
78 u_thread_get_time_nano(thrd_t thread)
79 {
80 #if defined(__linux__) && defined(HAVE_PTHREAD)
81 struct timespec ts;
82 clockid_t cid;
83
84 pthread_getcpuclockid(thread, &cid);
85 clock_gettime(cid, &ts);
86 return (int64_t)ts.tv_sec * 1000000000 + ts.tv_nsec;
87 #else
88 return 0;
89 #endif
90 }
91
92 static inline bool u_thread_is_self(thrd_t thread)
93 {
94 #if defined(HAVE_PTHREAD)
95 # if defined(__GNU_LIBRARY__) && defined(__GLIBC__) && defined(__GLIBC_MINOR__) && \
96 (__GLIBC__ >= 3 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 12))
97 return pthread_equal(pthread_self(), thread);
98 # endif
99 #endif
100 return false;
101 }
102
103 /*
104 * util_barrier
105 */
106
107 #if defined(HAVE_PTHREAD)
108
109 typedef pthread_barrier_t util_barrier;
110
111 static inline void util_barrier_init(util_barrier *barrier, unsigned count)
112 {
113 pthread_barrier_init(barrier, NULL, count);
114 }
115
116 static inline void util_barrier_destroy(util_barrier *barrier)
117 {
118 pthread_barrier_destroy(barrier);
119 }
120
121 static inline void util_barrier_wait(util_barrier *barrier)
122 {
123 pthread_barrier_wait(barrier);
124 }
125
126
127 #else /* If the OS doesn't have its own, implement barriers using a mutex and a condvar */
128
129 typedef struct {
130 unsigned count;
131 unsigned waiters;
132 uint64_t sequence;
133 mtx_t mutex;
134 cnd_t condvar;
135 } util_barrier;
136
137 static inline void util_barrier_init(util_barrier *barrier, unsigned count)
138 {
139 barrier->count = count;
140 barrier->waiters = 0;
141 barrier->sequence = 0;
142 (void) mtx_init(&barrier->mutex, mtx_plain);
143 cnd_init(&barrier->condvar);
144 }
145
146 static inline void util_barrier_destroy(util_barrier *barrier)
147 {
148 assert(barrier->waiters == 0);
149 mtx_destroy(&barrier->mutex);
150 cnd_destroy(&barrier->condvar);
151 }
152
153 static inline void util_barrier_wait(util_barrier *barrier)
154 {
155 mtx_lock(&barrier->mutex);
156
157 assert(barrier->waiters < barrier->count);
158 barrier->waiters++;
159
160 if (barrier->waiters < barrier->count) {
161 uint64_t sequence = barrier->sequence;
162
163 do {
164 cnd_wait(&barrier->condvar, &barrier->mutex);
165 } while (sequence == barrier->sequence);
166 } else {
167 barrier->waiters = 0;
168 barrier->sequence++;
169 cnd_broadcast(&barrier->condvar);
170 }
171
172 mtx_unlock(&barrier->mutex);
173 }
174
175 #endif
176
177 #endif /* U_THREAD_H_ */