diff options
Diffstat (limited to 'src/core/ngx_cycle.h')
-rw-r--r-- | src/core/ngx_cycle.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/ngx_cycle.h b/src/core/ngx_cycle.h index 2ea229ea4..df1f39033 100644 --- a/src/core/ngx_cycle.h +++ b/src/core/ngx_cycle.h @@ -28,9 +28,12 @@ struct ngx_cycle_s { typedef struct { ngx_flag_t daemon; ngx_flag_t master; - ngx_flag_t worker_reopen; + + ngx_int_t worker_processes; + ngx_uid_t user; ngx_gid_t group; + ngx_str_t pid; ngx_str_t newpid; } ngx_core_conf_t; |