Files
favicon-trap/qemu/include/qemu/thread-posix.h
Nguyen Anh Quynh aaaea14214 import Unicorn2
2021-10-03 22:14:44 +08:00

12 lines
155 B
C

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