From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54488) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sbrhv-0006Ls-80 for qemu-devel@nongnu.org; Tue, 05 Jun 2012 07:13:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sbrhq-0007GN-DJ for qemu-devel@nongnu.org; Tue, 05 Jun 2012 07:13:50 -0400 Received: from e34.co.us.ibm.com ([32.97.110.152]:58313) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sbrhq-0007Fo-6y for qemu-devel@nongnu.org; Tue, 05 Jun 2012 07:13:46 -0400 Received: from /spool/local by e34.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 5 Jun 2012 05:13:37 -0600 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id 64437C90050 for ; Tue, 5 Jun 2012 07:12:50 -0400 (EDT) Received: from d03av05.boulder.ibm.com (d03av05.boulder.ibm.com [9.17.195.85]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q55BCoQX057104 for ; Tue, 5 Jun 2012 07:12:50 -0400 Received: from d03av05.boulder.ibm.com (loopback [127.0.0.1]) by d03av05.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q55BCn5X013884 for ; Tue, 5 Jun 2012 05:12:49 -0600 Message-ID: <4FCDE9A8.7060301@us.ibm.com> Date: Tue, 05 Jun 2012 19:12:40 +0800 From: Anthony Liguori MIME-Version: 1.0 References: <1338858018-17189-1-git-send-email-mdroth@linux.vnet.ibm.com> <1338858018-17189-3-git-send-email-mdroth@linux.vnet.ibm.com> <4FCDE0F4.2010202@siemens.com> In-Reply-To: <4FCDE0F4.2010202@siemens.com> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 02/17] qidl: add qc definitions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: yamahata@valinux.co.jp, quintela@redhat.com, Michael Roth , qemu-devel@nongnu.org, owasserm@redhat.com, pbonzini@redhat.com, akong@redhat.com, afaerber@suse.de On 06/05/2012 06:35 PM, Jan Kiszka wrote: > On 2012-06-05 03:00, Michael Roth wrote: >> 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 > > These tags require a different prefix than the reserved '_'. The rationale is that QIDL is part of the "compiler/library implementation" that this namespace is reserved for. Regards, Anthony Liguori > > Jan >