1 | /* $Id: timeprog.cpp 1 1970-01-01 00:00:00Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * InnoTek Portable Runtime - Time Relative to Program Start.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #include <iprt/time.h>
|
---|
27 | #include <iprt/assert.h>
|
---|
28 | #include "internal/time.h"
|
---|
29 |
|
---|
30 |
|
---|
31 |
|
---|
32 | /**
|
---|
33 | * Get the nanosecond timestamp relative to program startup.
|
---|
34 | *
|
---|
35 | * @returns Timestamp relative to program startup.
|
---|
36 | */
|
---|
37 | RTR3DECL(uint64_t) RTTimeProgramNanoTS(void)
|
---|
38 | {
|
---|
39 | AssertMsg(g_u64ProgramStartNanoTS, ("RTR3Init hasn't been called!\n"));
|
---|
40 | return RTTimeNanoTS() - g_u64ProgramStartNanoTS;
|
---|
41 | }
|
---|
42 |
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * Get the millisecond timestamp relative to program startup.
|
---|
46 | *
|
---|
47 | * @returns Timestamp relative to program startup.
|
---|
48 | */
|
---|
49 | RTR3DECL(uint64_t) RTTimeProgramMilliTS(void)
|
---|
50 | {
|
---|
51 | /* AssertMsg(g_u64ProgramStartMilliTS, ("RTR3Init hasn't been called!\n")); */
|
---|
52 | return RTTimeMilliTS() - g_u64ProgramStartMilliTS;
|
---|
53 | }
|
---|
54 |
|
---|
55 |
|
---|
56 | /**
|
---|
57 | * Get the second timestamp relative to program startup.
|
---|
58 | *
|
---|
59 | * @returns Timestamp relative to program startup.
|
---|
60 | */
|
---|
61 | RTR3DECL(uint32_t) RTTimeProgramSecTS(void)
|
---|
62 | {
|
---|
63 | AssertMsg(g_u64ProgramStartMilliTS, ("RTR3Init hasn't been called!\n"));
|
---|
64 | return (uint32_t)(RTTimeProgramMilliTS() / 1000);
|
---|
65 | }
|
---|