From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58999) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V8vXW-0001Wk-A2 for qemu-devel@nongnu.org; Mon, 12 Aug 2013 13:04:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V8vXL-0004Pk-IC for qemu-devel@nongnu.org; Mon, 12 Aug 2013 13:04:18 -0400 Received: from mail-qe0-x22f.google.com ([2607:f8b0:400d:c02::22f]:47700) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V8vXL-0004Pc-Dm for qemu-devel@nongnu.org; Mon, 12 Aug 2013 13:04:07 -0400 Received: by mail-qe0-f47.google.com with SMTP id b10so3717492qen.34 for ; Mon, 12 Aug 2013 10:04:06 -0700 (PDT) Sender: Richard Henderson Message-ID: <52091581.9020104@twiddle.net> Date: Mon, 12 Aug 2013 10:04:01 -0700 From: Richard Henderson MIME-Version: 1.0 References: <1376239405-4084-1-git-send-email-alex@alex.org.uk> <1376239405-4084-9-git-send-email-alex@alex.org.uk> <520909D0.3040203@siemens.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [RFC] [PATCHv10 08/31] aio / timers: Split QEMUClock into QEMUClock and QEMUTimerList List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alex Bligh Cc: Kevin Wolf , Anthony Liguori , Jan Kiszka , qemu-devel@nongnu.org, liu ping fan , Stefan Hajnoczi , Paolo Bonzini , MORITA Kazutaka On 08/12/2013 09:25 AM, Alex Bligh wrote: > You mean one can't do > > typedef struct foo foo; > ... > typedef struct foo { > ... > } foo; > > ? No, but you can do typedef struct foo foo; ... struct foo { }; It's the double typedef that's the problem. r~