VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstTime-3.cpp@ 30016

Last change on this file since 30016 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1/* $Id: tstTime-3.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * IPRT Testcase - Simple RTTime test.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Oracle Corporation
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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27/*******************************************************************************
28* Header Files *
29*******************************************************************************/
30#ifdef RT_OS_WINDOWS
31# include <Windows.h>
32
33#elif defined RT_OS_L4
34
35#else /* posix */
36# include <sys/time.h>
37#endif
38
39#include <iprt/time.h>
40#include <iprt/stream.h>
41#include <iprt/string.h>
42#include <iprt/initterm.h>
43#include <iprt/thread.h>
44#include <iprt/err.h>
45
46
47DECLINLINE(uint64_t) OSNanoTS(void)
48{
49#ifdef RT_OS_WINDOWS
50 uint64_t u64; /* manual say larger integer, should be safe to assume it's the same. */
51 GetSystemTimeAsFileTime((LPFILETIME)&u64);
52 return u64 * 100;
53
54#elif defined RT_OS_L4
55 /** @todo fix a different timesource on l4. */
56 return RTTimeNanoTS();
57
58#else /* posix */
59
60 struct timeval tv;
61 gettimeofday(&tv, NULL);
62 return (uint64_t)tv.tv_sec * (uint64_t)(1000 * 1000 * 1000)
63 + (uint64_t)(tv.tv_usec * 1000);
64#endif
65}
66
67
68
69int main(int argc, char **argv)
70{
71 RTR3InitAndSUPLib();
72
73 if (argc <= 1)
74 {
75 RTPrintf("tstTime-3: usage: tstTime-3 <seconds> [seconds2 [..]]\n");
76 return 1;
77 }
78
79 RTPrintf("tstTime-3: Testing difference between RTTimeNanoTS() and OS time...\n");
80
81 for (int i = 1; i < argc; i++)
82 {
83 uint64_t cSeconds = 0;
84 int rc = RTStrToUInt64Ex(argv[i], NULL, 0, &cSeconds);
85 if (RT_FAILURE(rc))
86 {
87 RTPrintf("tstTime-3: Invalid argument %d: %s\n", i, argv[i]);
88 return 1;
89 }
90 RTPrintf("tstTime-3: %d - %RU64 seconds period...\n", i, cSeconds);
91
92 RTTimeNanoTS(); OSNanoTS(); RTThreadSleep(1);
93 uint64_t u64RTStartTS = RTTimeNanoTS();
94 uint64_t u64OSStartTS = OSNanoTS();
95
96 RTThreadSleep(cSeconds * 1000);
97
98 uint64_t u64RTElapsedTS = RTTimeNanoTS();
99 uint64_t u64OSElapsedTS = OSNanoTS();
100 u64RTElapsedTS -= u64RTStartTS;
101 u64OSElapsedTS -= u64OSStartTS;
102
103 RTPrintf("tstTime-3: %d - RT: %16RU64 ns\n", i, u64RTElapsedTS);
104 RTPrintf("tstTime-3: %d - OS: %16RU64 ns\n", i, u64OSElapsedTS);
105 RTPrintf("tstTime-3: %d - diff: %16RI64 ns\n", i, u64RTElapsedTS - u64OSElapsedTS);
106 }
107
108 return 0;
109}
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