2009-04-24 20:03:15 +02:00
|
|
|
#ifndef __QEMU_THREAD_H
|
|
|
|
#define __QEMU_THREAD_H 1
|
|
|
|
|
2011-03-14 23:18:02 +01:00
|
|
|
#include <inttypes.h>
|
2012-05-02 17:21:31 +02:00
|
|
|
#include <stdbool.h>
|
2011-03-14 23:18:02 +01:00
|
|
|
|
2009-04-24 20:03:15 +02:00
|
|
|
typedef struct QemuMutex QemuMutex;
|
|
|
|
typedef struct QemuCond QemuCond;
|
2011-08-08 14:36:41 +02:00
|
|
|
typedef struct QemuSemaphore QemuSemaphore;
|
2009-04-24 20:03:15 +02:00
|
|
|
typedef struct QemuThread QemuThread;
|
|
|
|
|
2011-03-12 17:43:52 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include "qemu-thread-win32.h"
|
|
|
|
#else
|
|
|
|
#include "qemu-thread-posix.h"
|
|
|
|
#endif
|
|
|
|
|
2011-12-12 17:21:31 +01:00
|
|
|
#define QEMU_THREAD_JOINABLE 0
|
|
|
|
#define QEMU_THREAD_DETACHED 1
|
|
|
|
|
2009-04-24 20:03:15 +02:00
|
|
|
void qemu_mutex_init(QemuMutex *mutex);
|
2010-07-07 20:58:01 +02:00
|
|
|
void qemu_mutex_destroy(QemuMutex *mutex);
|
2009-04-24 20:03:15 +02:00
|
|
|
void qemu_mutex_lock(QemuMutex *mutex);
|
|
|
|
int qemu_mutex_trylock(QemuMutex *mutex);
|
|
|
|
void qemu_mutex_unlock(QemuMutex *mutex);
|
|
|
|
|
2011-10-25 08:40:40 +02:00
|
|
|
#define rcu_read_lock() do { } while (0)
|
|
|
|
#define rcu_read_unlock() do { } while (0)
|
|
|
|
|
2009-04-24 20:03:15 +02:00
|
|
|
void qemu_cond_init(QemuCond *cond);
|
2010-07-07 20:58:01 +02:00
|
|
|
void qemu_cond_destroy(QemuCond *cond);
|
2011-03-12 17:43:52 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* IMPORTANT: The implementation does not guarantee that pthread_cond_signal
|
|
|
|
* and pthread_cond_broadcast can be called except while the same mutex is
|
|
|
|
* held as in the corresponding pthread_cond_wait calls!
|
|
|
|
*/
|
2009-04-24 20:03:15 +02:00
|
|
|
void qemu_cond_signal(QemuCond *cond);
|
|
|
|
void qemu_cond_broadcast(QemuCond *cond);
|
|
|
|
void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex);
|
|
|
|
|
2011-08-08 14:36:41 +02:00
|
|
|
void qemu_sem_init(QemuSemaphore *sem, int init);
|
|
|
|
void qemu_sem_post(QemuSemaphore *sem);
|
|
|
|
void qemu_sem_wait(QemuSemaphore *sem);
|
|
|
|
int qemu_sem_timedwait(QemuSemaphore *sem, int ms);
|
|
|
|
void qemu_sem_destroy(QemuSemaphore *sem);
|
|
|
|
|
2009-04-24 20:03:15 +02:00
|
|
|
void qemu_thread_create(QemuThread *thread,
|
2011-12-12 17:21:31 +01:00
|
|
|
void *(*start_routine)(void *),
|
|
|
|
void *arg, int mode);
|
|
|
|
void *qemu_thread_join(QemuThread *thread);
|
2011-03-12 17:43:51 +01:00
|
|
|
void qemu_thread_get_self(QemuThread *thread);
|
2012-05-02 17:21:31 +02:00
|
|
|
bool qemu_thread_is_self(QemuThread *thread);
|
2010-07-07 20:58:01 +02:00
|
|
|
void qemu_thread_exit(void *retval);
|
|
|
|
|
2009-04-24 20:03:15 +02:00
|
|
|
#endif
|