Sign in
◑
Theme
qemu-android
/
qemu-android
/
d3e2efc5b540c4e99ed5bcc0db3b1158ef52af43
/
.
/
qemu-thread-posix.h
blob: ee4618e62095405bee67852e18c232aeaa883f9c [
file
]
#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