diff options
Diffstat (limited to '')
| -rw-r--r-- | include/qemu/thread-posix.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/qemu/thread-posix.h b/include/qemu/thread-posix.h index c412623a91..758808b705 100644 --- a/include/qemu/thread-posix.h +++ b/include/qemu/thread-posix.h @@ -32,15 +32,6 @@ struct QemuSemaphore { unsigned int count; }; -struct QemuEvent { -#ifndef CONFIG_LINUX - pthread_mutex_t lock; - pthread_cond_t cond; -#endif - unsigned value; - bool initialized; -}; - struct QemuThread { pthread_t thread; }; |