target-ppc: Fix invalid SPR read/write warnings
[qemu/agraf.git] / util / qemu-thread-posix.c
blob4489abf1d850df954cce2e987e5c59f70435f69b
1 /*
2 * Wrappers around mutex/cond/thread functions
4 * Copyright Red Hat, Inc. 2009
6 * Author:
7 * Marcelo Tosatti <mtosatti@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include <stdlib.h>
14 #include <stdio.h>
15 #include <errno.h>
16 #include <time.h>
17 #include <signal.h>
18 #include <stdint.h>
19 #include <string.h>
20 #include <limits.h>
21 #include <unistd.h>
22 #include <sys/time.h>
23 #include "qemu/thread.h"
25 static void error_exit(int err, const char *msg)
27 fprintf(stderr, "qemu: %s: %s\n", msg, strerror(err));
28 abort();
31 void qemu_mutex_init(QemuMutex *mutex)
33 int err;
34 pthread_mutexattr_t mutexattr;
36 pthread_mutexattr_init(&mutexattr);
37 pthread_mutexattr_settype(&mutexattr, PTHREAD_MUTEX_ERRORCHECK);
38 err = pthread_mutex_init(&mutex->lock, &mutexattr);
39 pthread_mutexattr_destroy(&mutexattr);
40 if (err)
41 error_exit(err, __func__);
44 void qemu_mutex_destroy(QemuMutex *mutex)
46 int err;
48 err = pthread_mutex_destroy(&mutex->lock);
49 if (err)
50 error_exit(err, __func__);
53 void qemu_mutex_lock(QemuMutex *mutex)
55 int err;
57 err = pthread_mutex_lock(&mutex->lock);
58 if (err)
59 error_exit(err, __func__);
62 int qemu_mutex_trylock(QemuMutex *mutex)
64 return pthread_mutex_trylock(&mutex->lock);
67 void qemu_mutex_unlock(QemuMutex *mutex)
69 int err;
71 err = pthread_mutex_unlock(&mutex->lock);
72 if (err)
73 error_exit(err, __func__);
76 void qemu_cond_init(QemuCond *cond)
78 int err;
80 err = pthread_cond_init(&cond->cond, NULL);
81 if (err)
82 error_exit(err, __func__);
85 void qemu_cond_destroy(QemuCond *cond)
87 int err;
89 err = pthread_cond_destroy(&cond->cond);
90 if (err)
91 error_exit(err, __func__);
94 void qemu_cond_signal(QemuCond *cond)
96 int err;
98 err = pthread_cond_signal(&cond->cond);
99 if (err)
100 error_exit(err, __func__);
103 void qemu_cond_broadcast(QemuCond *cond)
105 int err;
107 err = pthread_cond_broadcast(&cond->cond);
108 if (err)
109 error_exit(err, __func__);
112 void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex)
114 int err;
116 err = pthread_cond_wait(&cond->cond, &mutex->lock);
117 if (err)
118 error_exit(err, __func__);
121 void qemu_sem_init(QemuSemaphore *sem, int init)
123 int rc;
125 #if defined(__APPLE__) || defined(__NetBSD__)
126 rc = pthread_mutex_init(&sem->lock, NULL);
127 if (rc != 0) {
128 error_exit(rc, __func__);
130 rc = pthread_cond_init(&sem->cond, NULL);
131 if (rc != 0) {
132 error_exit(rc, __func__);
134 if (init < 0) {
135 error_exit(EINVAL, __func__);
137 sem->count = init;
138 #else
139 rc = sem_init(&sem->sem, 0, init);
140 if (rc < 0) {
141 error_exit(errno, __func__);
143 #endif
146 void qemu_sem_destroy(QemuSemaphore *sem)
148 int rc;
150 #if defined(__APPLE__) || defined(__NetBSD__)
151 rc = pthread_cond_destroy(&sem->cond);
152 if (rc < 0) {
153 error_exit(rc, __func__);
155 rc = pthread_mutex_destroy(&sem->lock);
156 if (rc < 0) {
157 error_exit(rc, __func__);
159 #else
160 rc = sem_destroy(&sem->sem);
161 if (rc < 0) {
162 error_exit(errno, __func__);
164 #endif
167 void qemu_sem_post(QemuSemaphore *sem)
169 int rc;
171 #if defined(__APPLE__) || defined(__NetBSD__)
172 pthread_mutex_lock(&sem->lock);
173 if (sem->count == INT_MAX) {
174 rc = EINVAL;
175 } else if (sem->count++ < 0) {
176 rc = pthread_cond_signal(&sem->cond);
177 } else {
178 rc = 0;
180 pthread_mutex_unlock(&sem->lock);
181 if (rc != 0) {
182 error_exit(rc, __func__);
184 #else
185 rc = sem_post(&sem->sem);
186 if (rc < 0) {
187 error_exit(errno, __func__);
189 #endif
192 static void compute_abs_deadline(struct timespec *ts, int ms)
194 struct timeval tv;
195 gettimeofday(&tv, NULL);
196 ts->tv_nsec = tv.tv_usec * 1000 + (ms % 1000) * 1000000;
197 ts->tv_sec = tv.tv_sec + ms / 1000;
198 if (ts->tv_nsec >= 1000000000) {
199 ts->tv_sec++;
200 ts->tv_nsec -= 1000000000;
204 int qemu_sem_timedwait(QemuSemaphore *sem, int ms)
206 int rc;
207 struct timespec ts;
209 #if defined(__APPLE__) || defined(__NetBSD__)
210 compute_abs_deadline(&ts, ms);
211 pthread_mutex_lock(&sem->lock);
212 --sem->count;
213 while (sem->count < 0) {
214 rc = pthread_cond_timedwait(&sem->cond, &sem->lock, &ts);
215 if (rc == ETIMEDOUT) {
216 ++sem->count;
217 break;
219 if (rc != 0) {
220 error_exit(rc, __func__);
223 pthread_mutex_unlock(&sem->lock);
224 return (rc == ETIMEDOUT ? -1 : 0);
225 #else
226 if (ms <= 0) {
227 /* This is cheaper than sem_timedwait. */
228 do {
229 rc = sem_trywait(&sem->sem);
230 } while (rc == -1 && errno == EINTR);
231 if (rc == -1 && errno == EAGAIN) {
232 return -1;
234 } else {
235 compute_abs_deadline(&ts, ms);
236 do {
237 rc = sem_timedwait(&sem->sem, &ts);
238 } while (rc == -1 && errno == EINTR);
239 if (rc == -1 && errno == ETIMEDOUT) {
240 return -1;
243 if (rc < 0) {
244 error_exit(errno, __func__);
246 return 0;
247 #endif
250 void qemu_sem_wait(QemuSemaphore *sem)
252 #if defined(__APPLE__) || defined(__NetBSD__)
253 pthread_mutex_lock(&sem->lock);
254 --sem->count;
255 while (sem->count < 0) {
256 pthread_cond_wait(&sem->cond, &sem->lock);
258 pthread_mutex_unlock(&sem->lock);
259 #else
260 int rc;
262 do {
263 rc = sem_wait(&sem->sem);
264 } while (rc == -1 && errno == EINTR);
265 if (rc < 0) {
266 error_exit(errno, __func__);
268 #endif
271 void qemu_thread_create(QemuThread *thread,
272 void *(*start_routine)(void*),
273 void *arg, int mode)
275 sigset_t set, oldset;
276 int err;
277 pthread_attr_t attr;
279 err = pthread_attr_init(&attr);
280 if (err) {
281 error_exit(err, __func__);
283 if (mode == QEMU_THREAD_DETACHED) {
284 err = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
285 if (err) {
286 error_exit(err, __func__);
290 /* Leave signal handling to the iothread. */
291 sigfillset(&set);
292 pthread_sigmask(SIG_SETMASK, &set, &oldset);
293 err = pthread_create(&thread->thread, &attr, start_routine, arg);
294 if (err)
295 error_exit(err, __func__);
297 pthread_sigmask(SIG_SETMASK, &oldset, NULL);
299 pthread_attr_destroy(&attr);
302 void qemu_thread_get_self(QemuThread *thread)
304 thread->thread = pthread_self();
307 bool qemu_thread_is_self(QemuThread *thread)
309 return pthread_equal(pthread_self(), thread->thread);
312 void qemu_thread_exit(void *retval)
314 pthread_exit(retval);
317 void *qemu_thread_join(QemuThread *thread)
319 int err;
320 void *ret;
322 err = pthread_join(thread->thread, &ret);
323 if (err) {
324 error_exit(err, __func__);
326 return ret;