From: Ruslan Ermilov Date: Tue, 29 May 2018 13:15:19 +0000 (+0300) Subject: Core: fixed comment about ngx_current_msec after 81fae70d6cb8. X-Git-Tag: release-1.15.0~7 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=e4d173cc88c1692534fea37dfc49724423e60140;p=nginx.git Core: fixed comment about ngx_current_msec after 81fae70d6cb8. The value is no longer guaranteed to be based on milliseconds elapsed since Epoch. --- diff --git a/src/core/ngx_times.h b/src/core/ngx_times.h index 94aedcdc9..49e0a8c48 100644 --- a/src/core/ngx_times.h +++ b/src/core/ngx_times.h @@ -43,8 +43,8 @@ extern volatile ngx_str_t ngx_cached_http_log_iso8601; extern volatile ngx_str_t ngx_cached_syslog_time; /* - * milliseconds elapsed since epoch and truncated to ngx_msec_t, - * used in event timers + * milliseconds elapsed since some unspecified point in the past + * and truncated to ngx_msec_t, used in event timers */ extern volatile ngx_msec_t ngx_current_msec;