Sign in
qemu
/
qemu
/
359bc95d3e604e22fe07be62f5099148a2bb4e6f
/
.
/
qemu-thread-posix.h
blob: ee4618e62095405bee67852e18c232aeaa883f9c [
file
] [
log
] [
blame
]
#ifndef
__QEMU_THREAD_POSIX_H
#define
__QEMU_THREAD_POSIX_H
1
#include
"pthread.h"
struct
QemuMutex
{
pthread_mutex_t
lock
;
};
struct
QemuCond
{
pthread_cond_t
cond
;
};
struct
QemuThread
{
pthread_t
thread
;
};
#endif