From patchwork Wed Aug 21 15:03:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Bligh X-Patchwork-Id: 268837 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 7EC112C00D6 for ; Thu, 22 Aug 2013 01:11:24 +1000 (EST) Received: from localhost ([::1]:54267 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCA4A-0000st-Gm for incoming@patchwork.ozlabs.org; Wed, 21 Aug 2013 11:11:22 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35218) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VC9wk-0008Ub-Cg for qemu-devel@nongnu.org; Wed, 21 Aug 2013 11:03:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VC9wd-0004Yg-6r for qemu-devel@nongnu.org; Wed, 21 Aug 2013 11:03:41 -0400 Received: from mail.avalus.com ([2001:41c8:10:1dd::10]:56579) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VC9wc-0004X2-LP for qemu-devel@nongnu.org; Wed, 21 Aug 2013 11:03:34 -0400 Received: by mail.avalus.com (Postfix) with ESMTPSA id D02B2C561C7; Wed, 21 Aug 2013 16:03:33 +0100 (BST) From: Alex Bligh To: qemu-devel@nongnu.org Date: Wed, 21 Aug 2013 16:03:01 +0100 Message-Id: <1377097389-27335-24-git-send-email-alex@alex.org.uk> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1377097389-27335-1-git-send-email-alex@alex.org.uk> References: <1377097389-27335-1-git-send-email-alex@alex.org.uk> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:41c8:10:1dd::10 Cc: Kevin Wolf , Anthony Liguori , Alex Bligh , Jan Kiszka , liu ping fan , Stefan Hajnoczi , Paolo Bonzini , MORITA Kazutaka , rth@twiddle.net Subject: [Qemu-devel] [PATCHv13 23/31] aio / timers: Add qemu_clock_get_ms and qemu_clock_get_ms 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 Add utility functions qemu_clock_get_ms and qemu_clock_get_us Signed-off-by: Alex Bligh --- include/qemu/timer.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/include/qemu/timer.h b/include/qemu/timer.h index 3e9506c..63b964f 100644 --- a/include/qemu/timer.h +++ b/include/qemu/timer.h @@ -118,6 +118,34 @@ static inline int64_t qemu_clock_get_ns(QEMUClockType type) } /** + * qemu_clock_get_ms; + * @type: the clock type + * + * Get the millisecond value of a clock with + * type @type + * + * Returns: the clock value in milliseconds + */ +static inline int64_t qemu_clock_get_ms(QEMUClockType type) +{ + return qemu_clock_get_ns(type) / SCALE_MS; +} + +/** + * qemu_clock_get_us; + * @type: the clock type + * + * Get the microsecond value of a clock with + * type @type + * + * Returns: the clock value in microseconds + */ +static inline int64_t qemu_clock_get_us(QEMUClockType type) +{ + return qemu_clock_get_ns(type) / SCALE_US; +} + +/** * qemu_clock_has_timers: * @clock: the clock to operate on *