From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44999) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1jps-0003xb-DU for qemu-devel@nongnu.org; Tue, 23 Jul 2013 17:09:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V1jpp-0002bh-TQ for qemu-devel@nongnu.org; Tue, 23 Jul 2013 17:09:32 -0400 Received: from mail-pb0-x229.google.com ([2607:f8b0:400e:c01::229]:49055) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1jpp-0002bK-N6 for qemu-devel@nongnu.org; Tue, 23 Jul 2013 17:09:29 -0400 Received: by mail-pb0-f41.google.com with SMTP id rp16so8930803pbb.14 for ; Tue, 23 Jul 2013 14:09:29 -0700 (PDT) Sender: Richard Henderson Message-ID: <51EEF0FE.4090701@twiddle.net> Date: Tue, 23 Jul 2013 13:09:18 -0800 From: Richard Henderson MIME-Version: 1.0 References: <1E8E204.8000201@redhat.com> <1374343603-29183-1-git-send-email-alex@alex.org.uk> <1374343603-29183-3-git-send-email-alex@alex.org.uk> In-Reply-To: <1374343603-29183-3-git-send-email-alex@alex.org.uk> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCHv2] [RFC 2/7] aio / timers: qemu-timer.c utility functions and add list of clocks List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alex Bligh Cc: Kevin Wolf , Paolo Bonzini , Anthony Liguori , qemu-devel@nongnu.org, Stefan Hajnoczi On 07/20/2013 10:06 AM, Alex Bligh wrote: > +int64_t qemu_clock_deadline_ns(QEMUClock *clock); > +int64_t qemu_clock_deadline_all_ns(void); > +int qemu_timeout_ns_to_ms(int64_t ns); > +gint qemu_g_poll_ns(GPollFD *fds, guint nfds, int64_t timeout); Why continue with the g_ prefix here? Surely qemu_poll_ns is sufficient. r~