From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SSRsz-0002WN-12 for qemu-devel@nongnu.org; Thu, 10 May 2012 07:50:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SSRst-0006XM-EF for qemu-devel@nongnu.org; Thu, 10 May 2012 07:50:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38121) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SSRst-0006Wy-6k for qemu-devel@nongnu.org; Thu, 10 May 2012 07:50:15 -0400 From: Kevin Wolf Date: Thu, 10 May 2012 13:49:34 +0200 Message-Id: <1336650574-12835-31-git-send-email-kwolf@redhat.com> In-Reply-To: <1336650574-12835-1-git-send-email-kwolf@redhat.com> References: <1336650574-12835-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 30/30] declare ECANCELED on all machines List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Paolo Bonzini This is needed in particular on Win32. Signed-off-by: Paolo Bonzini Signed-off-by: Kevin Wolf --- qemu-common.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/qemu-common.h b/qemu-common.h index 50f659a..cccfb42 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -61,6 +61,9 @@ typedef struct Monitor Monitor; #if !defined(ENOTSUP) #define ENOTSUP 4096 #endif +#if !defined(ECANCELED) +#define ECANCELED 4097 +#endif #ifndef TIME_MAX #define TIME_MAX LONG_MAX #endif -- 1.7.6.5