mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-24 02:55:43 +00:00
1275b9b459
Cleaned up with scripts/clean-header-guards.pl. Backports commit 2a6a4076e117113ebec97b1821071afccfdfbc96 from qemu
12 lines
155 B
C
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
|