From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56875 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PtMGV-0002ZO-HP for qemu-devel@nongnu.org; Sat, 26 Feb 2011 10:41:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PtMGU-0007es-Ba for qemu-devel@nongnu.org; Sat, 26 Feb 2011 10:41:03 -0500 Received: from mail-wy0-f173.google.com ([74.125.82.173]:42749) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PtMGU-0007Qr-75 for qemu-devel@nongnu.org; Sat, 26 Feb 2011 10:41:02 -0500 Received: by mail-wy0-f173.google.com with SMTP id 29so2615616wyb.4 for ; Sat, 26 Feb 2011 07:41:01 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 26 Feb 2011 16:40:18 +0100 Message-Id: <1298734819-1960-22-git-send-email-pbonzini@redhat.com> In-Reply-To: <1298734819-1960-1-git-send-email-pbonzini@redhat.com> References: <1298734819-1960-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH v2 upstream 21/22] protect qemu_cpu_kick_self for Win32 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: jan.kiszka@siemens.com, aurelien@aurel32.net Signed-off-by: Paolo Bonzini --- cpus.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/cpus.c b/cpus.c index 3951111..34ef862 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