qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v4 upstream 20/21] protect qemu_cpu_kick_self for Wi


From: Paolo Bonzini
Subject: [Qemu-devel] [PATCH v4 upstream 20/21] protect qemu_cpu_kick_self for Win32
Date: Sat, 12 Mar 2011 17:44:07 +0100

Signed-off-by: Paolo Bonzini <address@hidden>
---
 cpus.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/cpus.c b/cpus.c
index e0bcb5c..7559a02 100644
--- a/cpus.c
+++ b/cpus.c
@@ -867,12 +867,16 @@ void qemu_cpu_kick(void *_env)
 
 void qemu_cpu_kick_self(void)
 {
+#ifndef _WIN32
     assert(cpu_single_env);
 
     if (!cpu_single_env->thread_kicked) {
         qemu_thread_signal(cpu_single_env->thread, SIG_IPI);
         cpu_single_env->thread_kicked = true;
     }
+#else
+    abort();
+#endif
 }
 
 int qemu_cpu_is_self(void *_env)
-- 
1.7.4





reply via email to

[Prev in Thread] Current Thread [Next in Thread]