less(1): Regenerate defines.h and update Makefile
[dragonfly.git] / lib / libthread_xu / thread / thr_cond.c
blobdbba2bc148046d59d95130f4111165e1e4d08c10
1 /*
2 * Copyright (c) 2005 David Xu <davidxu@freebsd.org>
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice unmodified, this list of conditions, and the following
10 * disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #include "namespace.h"
29 #include <machine/tls.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <pthread.h>
33 #include <limits.h>
34 #include "un-namespace.h"
36 #include "thr_private.h"
38 #ifdef _PTHREADS_DEBUGGING
39 #include <stdio.h>
40 #include <stdarg.h>
41 #include <sys/file.h>
42 #endif
44 #define cpu_ccfence() __asm __volatile("" : : : "memory")
46 umtx_t _cond_static_lock;
48 #ifdef _PTHREADS_DEBUGGING
50 static
51 void
52 cond_log(const char *ctl, ...)
54 char buf[256];
55 va_list va;
56 size_t len;
58 va_start(va, ctl);
59 len = vsnprintf(buf, sizeof(buf), ctl, va);
60 va_end(va);
61 _thr_log(buf, len);
64 #else
66 static __inline
67 void
68 cond_log(const char *ctl __unused, ...)
72 #endif
75 * Prototypes
77 int __pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
78 int __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
79 const struct timespec *abstime);
80 static int cond_wait_common(pthread_cond_t *cond, pthread_mutex_t *mutex,
81 const struct timespec *abstime, int cancel);
82 static int cond_signal_common(pthread_cond_t *cond, int broadcast);
84 static int
85 cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr)
87 pthread_cond_t pcond;
88 int rval = 0;
90 pcond = __malloc(sizeof(struct __pthread_cond_s));
91 if (pcond == NULL) {
92 rval = ENOMEM;
93 } else {
95 * Initialise the condition variable structure:
97 _thr_umtx_init(&pcond->c_lock);
98 if (cond_attr == NULL || *cond_attr == NULL) {
99 pcond->c_pshared = 0;
100 pcond->c_clockid = CLOCK_REALTIME;
101 } else {
102 pcond->c_pshared = (*cond_attr)->c_pshared;
103 pcond->c_clockid = (*cond_attr)->c_clockid;
105 TAILQ_INIT(&pcond->c_waitlist);
106 *cond = pcond;
108 /* Return the completion status: */
109 return (rval);
112 #if 0
113 void
114 _cond_reinit(pthread_cond_t cond)
116 if (cond) {
117 _thr_umtx_init(&cond->c_lock);
118 #if 0
119 /* retain state */
120 cond->c_pshared = 0;
121 cond->c_clockid = CLOCK_REALTIME;
122 #endif
123 TAILQ_INIT(&cond->c_waitlist);
126 #endif
128 static int
129 init_static(pthread_t thread, pthread_cond_t *cond)
131 int ret;
133 THR_LOCK_ACQUIRE(thread, &_cond_static_lock);
135 if (*cond == NULL)
136 ret = cond_init(cond, NULL);
137 else
138 ret = 0;
140 THR_LOCK_RELEASE(thread, &_cond_static_lock);
142 return (ret);
146 _pthread_cond_init(pthread_cond_t * __restrict cond,
147 const pthread_condattr_t * __restrict cond_attr)
149 *cond = NULL;
150 return cond_init(cond, cond_attr);
154 _pthread_cond_destroy(pthread_cond_t *cond)
156 pthread_cond_t cv;
157 pthread_t curthread = tls_get_curthread();
158 int rval = 0;
160 if (cond == NULL) {
161 rval = EINVAL;
162 } else if (*cond == NULL) {
163 rval = 0;
164 } else {
165 /* Lock the condition variable structure: */
166 THR_LOCK_ACQUIRE(curthread, &(*cond)->c_lock);
167 if (TAILQ_FIRST(&(*cond)->c_waitlist)) {
168 THR_LOCK_RELEASE(curthread, &(*cond)->c_lock);
169 return (EBUSY);
173 * NULL the caller's pointer now that the condition
174 * variable has been destroyed:
176 cv = *cond;
177 *cond = NULL;
179 /* Unlock the condition variable structure: */
180 THR_LOCK_RELEASE(curthread, &cv->c_lock);
182 /* Free the cond lock structure: */
185 * Free the memory allocated for the condition
186 * variable structure:
188 __free(cv);
191 /* Return the completion status: */
192 return (rval);
195 struct cond_cancel_info {
196 TAILQ_ENTRY(cond_cancel_info) entry;
197 pthread_mutex_t *mutex;
198 pthread_cond_t *cond;
199 int count;
200 int queued;
203 static void
204 cond_cancel_handler(void *arg)
206 pthread_t curthread = tls_get_curthread();
207 struct cond_cancel_info *info = (struct cond_cancel_info *)arg;
208 pthread_cond_t cv;
210 cv = *info->cond;
211 THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
212 cond_log("cond_cancel %p\n", cv);
214 if (info->queued) {
215 info->queued = 0;
216 cond_log("cond_cancel %p: info %p\n", cv, info);
217 TAILQ_REMOVE(&cv->c_waitlist, info, entry);
218 _thr_umtx_wake(&info->queued, 0);
220 THR_LOCK_RELEASE(curthread, &cv->c_lock);
222 /* _mutex_cv_lock(info->mutex, info->count); */
226 * Wait for pthread_cond_t to be signaled.
228 * NOTE: EINTR is ignored and may not be returned by this function.
230 static int
231 cond_wait_common(pthread_cond_t *cond, pthread_mutex_t *mutex,
232 const struct timespec *abstime, int cancel)
234 pthread_t curthread = tls_get_curthread();
235 struct timespec ts, ts2, *tsp;
236 struct cond_cancel_info info;
237 pthread_cond_t cv;
238 int oldcancel;
239 int ret;
242 * If the condition variable is statically initialized,
243 * perform the dynamic initialization:
245 cond_log("cond_wait_common %p on mutex %p info %p\n",
246 *cond, *mutex, &info);
247 if (__predict_false(*cond == NULL &&
248 (ret = init_static(curthread, cond)) != 0)) {
249 cond_log("cond_wait_common %p (failedA %d)\n", *cond, ret);
250 return (ret);
253 cv = *cond;
254 THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
255 ret = _mutex_cv_unlock(mutex, &info.count);
256 if (ret) {
257 cond_log("cond_wait_common %p (failedB %d)\n", cv, ret);
258 THR_LOCK_RELEASE(curthread, &cv->c_lock);
259 return ret;
262 cpu_ccfence();
263 info.mutex = mutex;
264 info.cond = cond;
265 info.queued = 1;
266 TAILQ_INSERT_TAIL(&cv->c_waitlist, &info, entry);
269 * loop if we have never been told to wake up
270 * or we lost a race.
272 while (info.queued) {
273 THR_LOCK_RELEASE(curthread, &cv->c_lock);
275 if (abstime != NULL) {
276 clock_gettime(cv->c_clockid, &ts);
277 timespecsub(abstime, &ts, &ts2);
278 tsp = &ts2;
279 } else {
280 tsp = NULL;
283 if (cancel) {
284 THR_CLEANUP_PUSH(curthread, cond_cancel_handler, &info);
285 oldcancel = _thr_cancel_enter(curthread);
286 ret = _thr_umtx_wait(&info.queued, 1, tsp,
287 cv->c_clockid);
288 _thr_cancel_leave(curthread, oldcancel);
289 THR_CLEANUP_POP(curthread, 0);
290 } else {
291 ret = _thr_umtx_wait(&info.queued, 1, tsp,
292 cv->c_clockid);
296 * Ignore EINTR. Make sure ret is 0 if not ETIMEDOUT.
298 THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
299 if (abstime != NULL && ret == ETIMEDOUT)
300 break;
301 cpu_ccfence();
304 if (info.queued) {
305 info.queued = 0;
306 TAILQ_REMOVE(&cv->c_waitlist, &info, entry);
307 ret = ETIMEDOUT;
308 } else {
309 ret = 0;
311 THR_LOCK_RELEASE(curthread, &cv->c_lock);
313 cond_log("cond_wait_common %p (doneA)\n", cv);
314 _mutex_cv_lock(mutex, info.count);
316 if (ret)
317 cond_log("cond_wait_common %p (failed %d)\n", cv, ret);
318 else
319 cond_log("cond_wait_common %p (doneB)\n", cv);
321 return (ret);
325 _pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
327 return (cond_wait_common(cond, mutex, NULL, 0));
331 __pthread_cond_wait(pthread_cond_t * __restrict cond,
332 pthread_mutex_t * __restrict mutex)
334 return (cond_wait_common(cond, mutex, NULL, 1));
338 _pthread_cond_timedwait(pthread_cond_t * __restrict cond,
339 pthread_mutex_t * __restrict mutex,
340 const struct timespec * __restrict abstime)
342 if (abstime == NULL || abstime->tv_sec < 0 || abstime->tv_nsec < 0 ||
343 abstime->tv_nsec >= 1000000000)
344 return (EINVAL);
346 return (cond_wait_common(cond, mutex, abstime, 0));
350 __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
351 const struct timespec *abstime)
353 if (abstime == NULL || abstime->tv_sec < 0 || abstime->tv_nsec < 0 ||
354 abstime->tv_nsec >= 1000000000)
355 return (EINVAL);
357 return (cond_wait_common(cond, mutex, abstime, 1));
360 static int
361 cond_signal_common(pthread_cond_t *cond, int broadcast)
363 pthread_t curthread = tls_get_curthread();
364 struct cond_cancel_info *info;
365 pthread_cond_t cv;
366 int ret = 0;
368 cond_log("cond_signal_common %p broad=%d\n", *cond, broadcast);
371 * If the condition variable is statically initialized, perform dynamic
372 * initialization.
374 if (__predict_false(*cond == NULL &&
375 (ret = init_static(curthread, cond)) != 0)) {
376 cond_log("cond_signal_common %p (failedA %d)\n", *cond, ret);
377 return (ret);
380 cv = *cond;
381 /* Lock the condition variable structure. */
382 THR_LOCK_ACQUIRE(curthread, &cv->c_lock);
383 while ((info = TAILQ_FIRST(&cv->c_waitlist)) != NULL) {
384 info->queued = 0;
385 TAILQ_REMOVE(&cv->c_waitlist, info, entry);
386 cond_log("cond_signal_common %p: wakeup %p\n", *cond, info);
387 _thr_umtx_wake(&info->queued, 0);
388 if (broadcast == 0)
389 break;
391 THR_LOCK_RELEASE(curthread, &cv->c_lock);
393 if (ret)
394 cond_log("cond_signal_common %p (failedB %d)\n", *cond, ret);
395 else
396 cond_log("cond_signal_common %p (done)\n", *cond);
398 return (ret);
402 _pthread_cond_signal(pthread_cond_t * cond)
404 return (cond_signal_common(cond, 0));
408 _pthread_cond_broadcast(pthread_cond_t * cond)
410 return (cond_signal_common(cond, 1));
414 * Double underscore versions are cancellation points. Single underscore
415 * versions are not and are provided for libc internal usage (which
416 * shouldn't introduce cancellation points).
418 __strong_reference(__pthread_cond_wait, pthread_cond_wait);
419 __strong_reference(__pthread_cond_timedwait, pthread_cond_timedwait);
421 __strong_reference(_pthread_cond_init, pthread_cond_init);
422 __strong_reference(_pthread_cond_destroy, pthread_cond_destroy);
423 __strong_reference(_pthread_cond_signal, pthread_cond_signal);
424 __strong_reference(_pthread_cond_broadcast, pthread_cond_broadcast);