synch.h revision 211876
1158979Snetchild/*-
2158979Snetchild * Copyright (c) 2009-2010 The FreeBSD Foundation
3158979Snetchild * All rights reserved.
4158979Snetchild *
5158979Snetchild * This software was developed by Pawel Jakub Dawidek under sponsorship from
6158979Snetchild * the FreeBSD Foundation.
7158979Snetchild *
8158979Snetchild * Redistribution and use in source and binary forms, with or without
9158979Snetchild * modification, are permitted provided that the following conditions
10158979Snetchild * are met:
11158979Snetchild * 1. Redistributions of source code must retain the above copyright
12158979Snetchild *    notice, this list of conditions and the following disclaimer.
13158979Snetchild * 2. Redistributions in binary form must reproduce the above copyright
14158979Snetchild *    notice, this list of conditions and the following disclaimer in the
15158979Snetchild *    documentation and/or other materials provided with the distribution.
16158979Snetchild *
17158979Snetchild * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
18158979Snetchild * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19158979Snetchild * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20158979Snetchild * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
21158979Snetchild * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22158979Snetchild * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23158979Snetchild * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24158979Snetchild * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25158979Snetchild * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26158979Snetchild * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27158979Snetchild * SUCH DAMAGE.
28158979Snetchild *
29158979Snetchild * $FreeBSD: head/sbin/hastd/synch.h 211876 2010-08-27 13:58:38Z pjd $
30158979Snetchild */
31158979Snetchild
32158979Snetchild#ifndef	_SYNCH_H_
33158979Snetchild#define	_SYNCH_H_
34158979Snetchild
35158979Snetchild#include <assert.h>
36158979Snetchild#include <errno.h>
37158979Snetchild#include <pthread.h>
38158979Snetchild#include <pthread_np.h>
39158979Snetchild#include <stdbool.h>
40158979Snetchild#include <time.h>
41158979Snetchild
42158979Snetchildstatic __inline void
43158979Snetchildmtx_init(pthread_mutex_t *lock)
44158979Snetchild{
45158979Snetchild	int error;
46158979Snetchild
47158979Snetchild	error = pthread_mutex_init(lock, NULL);
48158979Snetchild	assert(error == 0);
49158979Snetchild}
50158979Snetchildstatic __inline void
51158979Snetchildmtx_lock(pthread_mutex_t *lock)
52158979Snetchild{
53158979Snetchild	int error;
54158979Snetchild
55158979Snetchild	error = pthread_mutex_lock(lock);
56	assert(error == 0);
57}
58static __inline bool
59mtx_trylock(pthread_mutex_t *lock)
60{
61	int error;
62
63	error = pthread_mutex_trylock(lock);
64	assert(error == 0 || error == EBUSY);
65	return (error == 0);
66}
67static __inline void
68mtx_unlock(pthread_mutex_t *lock)
69{
70	int error;
71
72	error = pthread_mutex_unlock(lock);
73	assert(error == 0);
74}
75static __inline bool
76mtx_owned(pthread_mutex_t *lock)
77{
78
79	return (pthread_mutex_isowned_np(lock) != 0);
80}
81
82static __inline void
83rw_init(pthread_rwlock_t *lock)
84{
85	int error;
86
87	error = pthread_rwlock_init(lock, NULL);
88	assert(error == 0);
89}
90static __inline void
91rw_rlock(pthread_rwlock_t *lock)
92{
93	int error;
94
95	error = pthread_rwlock_rdlock(lock);
96	assert(error == 0);
97}
98static __inline void
99rw_wlock(pthread_rwlock_t *lock)
100{
101	int error;
102
103	error = pthread_rwlock_wrlock(lock);
104	assert(error == 0);
105}
106static __inline void
107rw_unlock(pthread_rwlock_t *lock)
108{
109	int error;
110
111	error = pthread_rwlock_unlock(lock);
112	assert(error == 0);
113}
114
115static __inline void
116cv_init(pthread_cond_t *cv)
117{
118	pthread_condattr_t attr;
119	int error;
120
121	error = pthread_condattr_init(&attr);
122	assert(error == 0);
123	error = pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
124	assert(error == 0);
125	error = pthread_cond_init(cv, &attr);
126	assert(error == 0);
127}
128static __inline void
129cv_wait(pthread_cond_t *cv, pthread_mutex_t *lock)
130{
131	int error;
132
133	error = pthread_cond_wait(cv, lock);
134	assert(error == 0);
135}
136static __inline bool
137cv_timedwait(pthread_cond_t *cv, pthread_mutex_t *lock, int timeout)
138{
139	struct timespec ts;
140	int error;
141
142	if (timeout == 0) {
143		cv_wait(cv, lock);
144		return (false);
145	}
146
147        error = clock_gettime(CLOCK_MONOTONIC, &ts);
148	assert(error == 0);
149	ts.tv_sec += timeout;
150	error = pthread_cond_timedwait(cv, lock, &ts);
151	assert(error == 0 || error == ETIMEDOUT);
152	return (error == ETIMEDOUT);
153}
154static __inline void
155cv_signal(pthread_cond_t *cv)
156{
157	int error;
158
159	error = pthread_cond_signal(cv);
160	assert(error == 0);
161}
162static __inline void
163cv_broadcast(pthread_cond_t *cv)
164{
165	int error;
166
167	error = pthread_cond_broadcast(cv);
168	assert(error == 0);
169}
170#endif	/* !_SYNCH_H_ */
171