unicorn/qemu/include/qemu/thread-posix.h
2017-01-20 15:44:03 +08:00

11 lines
160 B
C

#ifndef __QEMU_THREAD_POSIX_H
#define __QEMU_THREAD_POSIX_H 1
#include "pthread.h"
#include <semaphore.h>
struct QemuThread {
pthread_t thread;
};
#endif