/* $Id$ */
/** @file
* Set the NT timer frequency.
*/
/*
* Copyright (C) 2007-2014 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include <Windows.h>
#include <iprt/initterm.h>
/* from sysinternals. */
NTSYSAPI LONG NTAPI NtSetTimerResolution(IN ULONG DesiredResolution, IN BOOLEAN SetResolution, OUT PULONG CurrentResolution);
NTSYSAPI LONG NTAPI NtQueryTimerResolution(OUT PULONG MinimumResolution, OUT PULONG MaximumResolution, OUT PULONG CurrentResolution);
{
if (RT_FAILURE(rc))
return RTMsgInitFailure(rc);
/*
* Parse arguments.
*/
bool fVerbose = true;
{
};
{
switch (rc)
{
case 'r':
return RTMsgErrorExit(RTEXITCODE_SYNTAX,
"syntax error: the new timer resolution (%RU32) is out of range\n",
break;
case 's':
break;
case 'q':
fVerbose = false;
break;
case 'v':
fVerbose = true;
break;
case 'h':
RTPrintf("Usage: ntsetfreq [-q|--quiet] [-v|--verbose] [-r|--resolution <100ns>] [-s|--sleep <1s>]\n");
return RTEXITCODE_SUCCESS;
default:
}
}
/*
* Query the current resolution.
*/
{
if (Status >= 0)
RTMsgInfo("cur: %u (%u.%02u Hz) min: %u (%u.%02u Hz) max: %u (%u.%02u Hz)\n",
else
}
if (u32NewRes)
{
if (Status < 0)
else if (fVerbose)
{
if (Status >= 0)
RTMsgInfo("new: %u (%u.%02u Hz) requested %RU32 (%u.%02u Hz)\n",
else
RTMsgError("NTSetTimerResolution succeeded but the NTQueryTimerResolution call failed with status %#x (ignored)\n", Status);
Status = 0;
}
}
{
if (cSecsSleep == UINT32_MAX)
for (;;)
else
while (cSecsSleep-- > 0)
RTThreadSleep(1000);
}
return Status >= 0 ? 0 : 1;
}