diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-06-15 07:55:11 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-15 07:55:11 +0000 |
commit | 87350f269da4d82f2436aac91ae87fbd37ca6c16 (patch) | |
tree | 153b5d7d6bea91ad891de5168dd27d39e0082f66 /src/os/unix/ngx_process.h | |
parent | f07f63ae46345eb2aa8a433b0bf48947d6cff95e (diff) | |
download | nginx-87350f269da4d82f2436aac91ae87fbd37ca6c16.tar.gz nginx-87350f269da4d82f2436aac91ae87fbd37ca6c16.zip |
nginx-0.0.7-2004-06-15-11:55:11 import
Diffstat (limited to 'src/os/unix/ngx_process.h')
-rw-r--r-- | src/os/unix/ngx_process.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/os/unix/ngx_process.h b/src/os/unix/ngx_process.h index 819064b93..1ce39e5f6 100644 --- a/src/os/unix/ngx_process.h +++ b/src/os/unix/ngx_process.h @@ -9,6 +9,7 @@ typedef void (*ngx_spawn_proc_pt) (ngx_cycle_t *cycle, void *data); typedef struct { ngx_pid_t pid; int status; + ngx_socket_t channel[2]; ngx_spawn_proc_pt proc; void *data; @@ -48,7 +49,8 @@ ngx_pid_t ngx_execute(ngx_cycle_t *cycle, ngx_exec_ctx_t *ctx); void ngx_process_get_status(void); extern ngx_pid_t ngx_pid; -extern ngx_uint_t ngx_last_process; +extern ngx_int_t ngx_last_process; +extern ngx_socket_t ngx_channel; extern ngx_process_t ngx_processes[NGX_MAX_PROCESSES]; |