summaryrefslogtreecommitdiff
path: root/qemu-thread-posix.h
diff options
context:
space:
mode:
Diffstat (limited to 'qemu-thread-posix.h')
-rw-r--r--qemu-thread-posix.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/qemu-thread-posix.h b/qemu-thread-posix.h
deleted file mode 100644
index ee4618e620..0000000000
--- a/qemu-thread-posix.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#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