aboutsummaryrefslogtreecommitdiff
path: root/src/os/win32/ngx_time.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/win32/ngx_time.c')
-rw-r--r--src/os/win32/ngx_time.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os/win32/ngx_time.c b/src/os/win32/ngx_time.c
index 435f43015..43d2c41cb 100644
--- a/src/os/win32/ngx_time.c
+++ b/src/os/win32/ngx_time.c
@@ -19,6 +19,8 @@ void ngx_gettimeofday(struct timeval *tp)
* 134744 days,
* 11644473600 seconds or
* 11644473600,000,000,0 100-nanosecond intervals.
+ *
+ * See also MSKB Q167296.
*/
intervals = ((uint64_t) ft.dwHighDateTime << 32) | ft.dwLowDateTime;