summaryrefslogtreecommitdiff
path: root/time/win32/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/win32/time.c')
-rw-r--r--time/win32/time.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/time/win32/time.c b/time/win32/time.c
index 42b531b26..94d92602e 100644
--- a/time/win32/time.c
+++ b/time/win32/time.c
@@ -294,6 +294,9 @@ static apr_status_t clock_restore(void *unsetres)
APR_DECLARE(void) apr_time_clock_hires(apr_pool_t *p)
{
ULONG newRes;
+ /* Timer resolution is stated in 100ns units. Note that TRUE requests the
+ * new clock resolution, FALSE above releases the request.
+ */
if (SetTimerResolution(10000, TRUE, &newRes) == 0 /* STATUS_SUCCESS */) {
/* register the cleanup... */
apr_pool_cleanup_register(p, (void*)10000, clock_restore,