comparison src/core/ngx_times.c @ 270:6eb1e38f0f1f NGINX_0_5_5

nginx 0.5.5 *) Change: the -v switch does not show compiler information any more. *) Feature: the -V switch. *) Feature: the "worker_rlimit_core" directive supports size in K, M, and G. *) Bugfix: the nginx.pm module now could be installed by an unprivileged user. *) Bugfix: a segmentation fault might occur if the $r->request_body or $r->request_body_file methods were used. *) Bugfix: the ppc platform specific bugs.
author Igor Sysoev <http://sysoev.ru>
date Sun, 24 Dec 2006 00:00:00 +0300
parents e0b1d0a6c629
children fa73fb2d9427
comparison
equal deleted inserted replaced
269:aa9c0062124d 270:6eb1e38f0f1f
17 * to run more than NGX_TIME_SLOTS seconds. 17 * to run more than NGX_TIME_SLOTS seconds.
18 */ 18 */
19 19
20 #define NGX_TIME_SLOTS 64 20 #define NGX_TIME_SLOTS 64
21 21
22 static ngx_uint_t slot = NGX_TIME_SLOTS; 22 static ngx_uint_t slot;
23 static ngx_atomic_t ngx_time_lock; 23 static ngx_atomic_t ngx_time_lock;
24 24
25 volatile ngx_msec_t ngx_current_msec; 25 volatile ngx_msec_t ngx_current_msec;
26 volatile ngx_time_t *ngx_cached_time; 26 volatile ngx_time_t *ngx_cached_time;
27 volatile ngx_str_t ngx_cached_err_log_time; 27 volatile ngx_str_t ngx_cached_err_log_time;