VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/ntGetTimerResolution.cpp@ 8170

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

Rebranding: replacing more innotek strings.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.2 KB
Line 
1/* $Id: ntGetTimerResolution.cpp 8170 2008-04-18 17:52:25Z vboxsync $ */
2/** @file
3 * Incredibly Portable Runtime - Win32 (NT) testcase for getting the timer resolution.
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 * 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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#define _WIN32_WINNT 0x0500
36#include <Windows.h>
37#include <stdio.h>
38
39extern "C" {
40/* from sysinternals. */
41NTSYSAPI LONG NTAPI NtQueryTimerResolution(OUT PULONG MinimumResolution, OUT PULONG MaximumResolution, OUT PULONG CurrentResolution);
42}
43
44
45int main()
46{
47 ULONG Min = ~0;
48 ULONG Max = ~0;
49 ULONG Cur = ~0;
50 NtQueryTimerResolution(&Min, &Max, &Cur);
51 printf("NtQueryTimerResolution -> Min=%lu Max=%lu Cur=%lu (100ns)\n", Min, Max, Cur);
52
53#if 0
54 /* figure out the 100ns relative to the 1970 epoc. */
55 SYSTEMTIME st;
56 st.wYear = 1970;
57 st.wMonth = 1;
58 st.wDayOfWeek = 4; /* Thor's day. */
59 st.wDay = 1;
60 st.wHour = 0;
61 st.wMinute = 0;
62 st.wSecond = 0;
63 st.wMilliseconds = 0;
64
65 FILETIME ft;
66 if (SystemTimeToFileTime(&st, &ft))
67 {
68 printf("epoc is %I64u (0x%08x%08x)\n", ft, ft.dwHighDateTime, ft.dwLowDateTime);
69 if (FileTimeToSystemTime(&ft, &st))
70 printf("unix epoc: %d-%02d-%02d %02d:%02d:%02d.%03d (week day %d)\n",
71 st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds, st.wDayOfWeek);
72 else
73 printf("FileTimeToSystemTime failed, lasterr=%d\n", GetLastError());
74 }
75 else
76 printf("SystemTimeToFileTime failed, lasterr=%d\n", GetLastError());
77
78 ft.dwHighDateTime = 0;
79 ft.dwLowDateTime = 0;
80 if (FileTimeToSystemTime(&ft, &st))
81 printf("nt time start: %d-%02d-%02d %02d:%02d:%02d.%03d (week day %d)\n",
82 st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds, st.wDayOfWeek);
83 else
84 printf("FileTimeToSystemTime failed, lasterr=%d\n", GetLastError());
85#endif
86 return 0;
87}
88
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