VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMAll/TMAllReal.cpp@ 13791

Last change on this file since 13791 was 12989, checked in by vboxsync, 16 years ago

VMM + VBox/cdefs.h: consolidated all the XYZ*DECLS of the VMM into VMM*DECL. Removed dead DECL and IN_XYZ* macros.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1/* $Id: TMAllReal.cpp 12989 2008-10-06 02:15:39Z vboxsync $ */
2/** @file
3 * TM - Timeout Manager, Real Time, All Contexts.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_TM
27#include <VBox/tm.h>
28#include "TMInternal.h"
29#include <VBox/vm.h>
30#include <iprt/time.h>
31
32
33/**
34 * Gets the current TMCLOCK_REAL time.
35 *
36 * @returns Real time.
37 * @param pVM The VM handle.
38 */
39VMMDECL(uint64_t) TMRealGet(PVM pVM)
40{
41 return RTTimeMilliTS();
42}
43
44
45/**
46 * Gets the frequency of the TMCLOCK_REAL clock.
47 *
48 * @returns frequency.
49 * @param pVM The VM handle.
50 */
51VMMDECL(uint64_t) TMRealGetFreq(PVM pVM)
52{
53 return TMCLOCK_FREQ_REAL;
54}
55
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette