2011-03-12 16:43:52 +00:00
|
|
|
#ifndef __QEMU_THREAD_POSIX_H
|
|
|
|
#define __QEMU_THREAD_POSIX_H 1
|
|
|
|
#include "pthread.h"
|
2011-08-08 12:36:41 +00:00
|
|
|
#include <semaphore.h>
|
2011-03-12 16:43:52 +00:00
|
|
|
|
|
|
|
struct QemuMutex {
|
|
|
|
pthread_mutex_t lock;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct QemuCond {
|
|
|
|
pthread_cond_t cond;
|
|
|
|
};
|
|
|
|
|
2011-08-08 12:36:41 +00:00
|
|
|
struct QemuSemaphore {
|
2012-12-28 06:38:11 +00:00
|
|
|
#if defined(__APPLE__) || defined(__NetBSD__)
|
2012-11-02 14:43:21 +00:00
|
|
|
pthread_mutex_t lock;
|
|
|
|
pthread_cond_t cond;
|
2013-07-03 08:58:14 +00:00
|
|
|
unsigned int count;
|
2012-11-02 14:43:21 +00:00
|
|
|
#else
|
2011-08-08 12:36:41 +00:00
|
|
|
sem_t sem;
|
2012-11-02 14:43:21 +00:00
|
|
|
#endif
|
2011-08-08 12:36:41 +00:00
|
|
|
};
|
|
|
|
|
2011-03-12 16:43:52 +00:00
|
|
|
struct QemuThread {
|
|
|
|
pthread_t thread;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|