[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 10/13] Do not include compatfd for WIN32
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH 10/13] Do not include compatfd for WIN32 |
Date: |
Fri, 24 Jun 2011 17:56:46 +0100 |
From: Jan Kiszka <address@hidden>
sigset_t, used by that header, is not available in mingw32 environments.
Signed-off-by: Jan Kiszka <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
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
- [Qemu-devel] [PULL 00/13] Trivial patches for June 16 to June 24 2011, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 02/13] Align dummy display to fixed-size active console, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 01/13] configure: Don't create symlinks to nonexistent targets, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 03/13] sheepdog: qemu_bh_new() can't return null pointer, drop check, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 04/13] Strip trailing '\n' from error_report()'s first argument, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 05/13] qemu-img: Don't prepend qemu-img to error messages twice., Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 07/13] blockdev: Put space after comma in error message, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 06/13] Spell "unkown" correctly in error_report() arguments, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 08/13] MAINTAINERS: Fix typo in email address, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 09/13] Fix comment typos in hw/armv7m.c, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 10/13] Do not include compatfd for WIN32,
Stefan Hajnoczi <=
- [Qemu-devel] [PATCH 11/13] w32: Remove redundant definitions of PRI*64, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 12/13] exec: last_first_tb was only used in !ONLY_USER case, Stefan Hajnoczi, 2011/06/24
- [Qemu-devel] [PATCH 13/13] qemu-kvm: fix pulseaudio detection in configure, Stefan Hajnoczi, 2011/06/24
- Re: [Qemu-devel] [PULL 00/13] Trivial patches for June 16 to June 24 2011, Anthony Liguori, 2011/06/27