comparison src/core/ngx_cycle.h @ 10:46833bd150cb NGINX_0_1_5

nginx 0.1.5 *) Bugfix: on Solaris and Linux there may be too many "recvmsg() returned not enough data" alerts. *) Bugfix: there were the "writev() failed (22: Invalid argument)" errors on Solaris in proxy mode without sendfile. On other platforms that do not support sendfile at all the process got caught in an endless loop. *) Bugfix: segmentation fault on Solaris in proxy mode and using sendfile. *) Bugfix: segmentation fault on Solaris. *) Bugfix: on-line upgrade did not work on Linux. *) Bugfix: the ngx_http_autoindex_module module did not escape the spaces, the quotes, and the percent signs in the directory listing. *) Change: the decrease of the copy operations. *) Feature: the userid_p3p directive.
author Igor Sysoev <http://sysoev.ru>
date Thu, 11 Nov 2004 00:00:00 +0300
parents f0b350454894
children 8b6db3bda591
comparison
equal deleted inserted replaced
9:77eee314ddbd 10:46833bd150cb
8 #define _NGX_CYCLE_H_INCLUDED_ 8 #define _NGX_CYCLE_H_INCLUDED_
9 9
10 10
11 #include <ngx_config.h> 11 #include <ngx_config.h>
12 #include <ngx_core.h> 12 #include <ngx_core.h>
13
14
15 #define NGX_DEBUG_POINTS_STOP 1
16 #define NGX_DEBUG_POINTS_ABORT 2
13 17
14 18
15 struct ngx_cycle_s { 19 struct ngx_cycle_s {
16 void ****conf_ctx; 20 void ****conf_ctx;
17 ngx_pool_t *pool; 21 ngx_pool_t *pool;
38 typedef struct { 42 typedef struct {
39 ngx_flag_t daemon; 43 ngx_flag_t daemon;
40 ngx_flag_t master; 44 ngx_flag_t master;
41 45
42 ngx_int_t worker_processes; 46 ngx_int_t worker_processes;
47 ngx_int_t debug_points;
43 48
44 ngx_uid_t user; 49 ngx_uid_t user;
45 ngx_gid_t group; 50 ngx_gid_t group;
46 51
47 ngx_str_t pid; 52 ngx_str_t pid;