From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46589) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hS-0004XJ-2A for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qa9hQ-0001Y4-JH for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:45 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:64284) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hQ-0001QQ-0U for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:44 -0400 Received: by mail-fx0-f45.google.com with SMTP id 12so94133fxg.4 for ; Fri, 24 Jun 2011 09:57:43 -0700 (PDT) From: Stefan Hajnoczi Date: Fri, 24 Jun 2011 17:56:46 +0100 Message-Id: <1308934609-20824-11-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 10/13] Do not include compatfd for WIN32 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jan Kiszka , Anthony Liguori , Stefan Hajnoczi From: Jan Kiszka sigset_t, used by that header, is not available in mingw32 environments. Signed-off-by: Jan Kiszka Signed-off-by: Stefan Hajnoczi --- cpus.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/cpus.c b/cpus.c index 0699f37..ded2100 100644 --- a/cpus.c +++ b/cpus.c @@ -34,7 +34,10 @@ #include "qemu-thread.h" #include "cpus.h" + +#ifndef _WIN32 #include "compatfd.h" +#endif #ifdef SIGRTMIN #define SIG_IPI (SIGRTMIN+4) -- 1.7.5.4