c695ab003533dff17131a0f1e1f9a85979abf25evboxsync/* $Id $ */
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync/** @file
5b281ba489ca18f0380d7efc7a5108b606cce449vboxsync * IPRT - Time, generic RTTimeLocalNow.
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync */
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2010 Oracle Corporation
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync *
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync * available from http://www.virtualbox.org. This file is free software;
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync * you can redistribute it and/or modify it under the terms of the GNU
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * General Public License (GPL) as published by the Free Software
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * The contents of this file may alternatively be used under the terms
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * of the Common Development and Distribution License Version 1.0
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution, in which case the provisions of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * CDDL are applicable instead of those of the GPL.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * You may elect to license modified versions of this file under the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * terms and conditions of either the GPL or the CDDL or both.
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync */
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync/*******************************************************************************
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync* Header Files *
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync*******************************************************************************/
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync#include <iprt/time.h>
aa4bcf0a4b2db3ac352b56a291d49cb8d4b66d32vboxsync#include "internal/iprt.h"
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync
c695ab003533dff17131a0f1e1f9a85979abf25evboxsyncRTDECL(PRTTIMESPEC) RTTimeLocalNow(PRTTIMESPEC pTime)
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync{
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync int64_t i64PreDelta;
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync int64_t i64PostDelta;
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync do
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync {
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync i64PreDelta = RTTimeLocalDeltaNano();
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync RTTimeNow(pTime);
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync i64PostDelta = RTTimeLocalDeltaNano();
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync } while (i64PreDelta != i64PostDelta);
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync return RTTimeSpecAddNano(pTime, i64PostDelta);
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync}
aa4bcf0a4b2db3ac352b56a291d49cb8d4b66d32vboxsyncRT_EXPORT_SYMBOL(RTTimeLocalNow);
c695ab003533dff17131a0f1e1f9a85979abf25evboxsync