]> Git Repo - qemu.git/blobdiff - qemu-thread-win32.h
ppc: Pass PowerPCCPU to [h]decr callbacks
[qemu.git] / qemu-thread-win32.h
index 2983490a582967713c6cc1449ae7ddf5b18da926..13adb958f04804e3712d1b56439c181d3bfed962 100644 (file)
@@ -13,10 +13,17 @@ struct QemuCond {
     HANDLE continue_event;
 };
 
+struct QemuSemaphore {
+    HANDLE sema;
+};
+
 typedef struct QemuThreadData QemuThreadData;
 struct QemuThread {
     QemuThreadData *data;
     unsigned tid;
 };
 
+/* Only valid for joinable threads.  */
+HANDLE qemu_thread_get_handle(QemuThread *thread);
+
 #endif
This page took 0.02277 seconds and 4 git commands to generate.