From patchwork Tue Jun 5 01:00:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Roth X-Patchwork-Id: 162898 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id AD87DB6F9D for ; Tue, 5 Jun 2012 11:24:34 +1000 (EST) Received: from localhost ([::1]:46362 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sbi9D-0002aZ-QO for incoming@patchwork.ozlabs.org; Mon, 04 Jun 2012 21:01:23 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48211) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sbi8X-00011A-OO for qemu-devel@nongnu.org; Mon, 04 Jun 2012 21:00:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sbi8V-0002po-Q2 for qemu-devel@nongnu.org; Mon, 04 Jun 2012 21:00:41 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:58704) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sbi8V-0002p7-Hl for qemu-devel@nongnu.org; Mon, 04 Jun 2012 21:00:39 -0400 Received: by pbbro12 with SMTP id ro12so7301741pbb.4 for ; Mon, 04 Jun 2012 18:00:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=Jxvh4H19zGzWr2j0c/CeIyjoOVqFYt3iCUQBHYnrfvE=; b=zMPCM/ENcqZiEF4f+9gP2YcmVwzUTkJL7fU4fMaUpNnz8HIzjkHQPHLBkdrqM2Lbkx OOmwDAvmzJrmunPljl7RS0gp5OphBuEAvHFFH5anbgYvWRls8cxuRImX8cEpIoiCdc0z WbSn6xlNumJTExzA7ly83x1+EwZk/FepiZmgUHj2NiSotZ1sUOWSIm43kGbB67yBn0pn WqQdYqijqGLNOo9DBQMuZBuXAHKJe0G2Z2HMXTJ978qYGFxvFHSgkDqm4RU41jch0rBL B0unRPofq/Os99/tTusG5BMkFfcw+dLEWL0Tg3+1MP5TBzB0Y+ASlRyIoCxbzq14HdaD wyIg== Received: by 10.68.217.3 with SMTP id ou3mr37605729pbc.117.1338858037535; Mon, 04 Jun 2012 18:00:37 -0700 (PDT) Received: from localhost.localdomain ([32.97.110.59]) by mx.google.com with ESMTPS id np8sm408059pbc.71.2012.06.04.18.00.35 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 04 Jun 2012 18:00:37 -0700 (PDT) From: Michael Roth To: qemu-devel@nongnu.org Date: Mon, 4 Jun 2012 20:00:03 -0500 Message-Id: <1338858018-17189-3-git-send-email-mdroth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1338858018-17189-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1338858018-17189-1-git-send-email-mdroth@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.45 Cc: aliguori@us.ibm.com, quintela@redhat.com, owasserm@redhat.com, yamahata@valinux.co.jp, pbonzini@redhat.com, akong@redhat.com, afaerber@suse.de Subject: [Qemu-devel] [PATCH 02/17] qidl: add qc definitions X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Define away the annotations so we can still compile. Signed-off-by: Michael Roth --- qapi/qc.h | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) create mode 100644 qapi/qc.h diff --git a/qapi/qc.h b/qapi/qc.h new file mode 100644 index 0000000..3b3a8b9 --- /dev/null +++ b/qapi/qc.h @@ -0,0 +1,11 @@ +#ifndef QC_H +#define QC_H + +#define qc_declaration +#define _immutable +#define _derived +#define _broken +#define _version(x) +#define _size_is(x) + +#endif