diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-01-14 18:19:42 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-01-14 18:19:42 +0000 |
commit | 0911f770834c3217e79da304c4d46d2606228bab (patch) | |
tree | dbda0b6c327919a44474fe869535cd969cb66fec /src/os/unix/ngx_process.h | |
parent | 80340f0152ad5bb4c0a4fdf88873331e77eae5f5 (diff) | |
download | nginx-0911f770834c3217e79da304c4d46d2606228bab.tar.gz nginx-0911f770834c3217e79da304c4d46d2606228bab.zip |
nginx-0.0.1-2004-01-14-21:19:42 import
Diffstat (limited to 'src/os/unix/ngx_process.h')
-rw-r--r-- | src/os/unix/ngx_process.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/os/unix/ngx_process.h b/src/os/unix/ngx_process.h index 5b565091c..195d3fd75 100644 --- a/src/os/unix/ngx_process.h +++ b/src/os/unix/ngx_process.h @@ -8,6 +8,7 @@ typedef void (*ngx_spawn_proc_pt) (ngx_cycle_t *cycle, void *data); typedef struct { ngx_pid_t pid; + int signal; int status; ngx_spawn_proc_pt proc; @@ -16,7 +17,6 @@ typedef struct { unsigned respawn:1; unsigned detached:1; - unsigned signal:1; unsigned exiting:1; unsigned exited:1; } ngx_process_t; @@ -47,7 +47,6 @@ ngx_pid_t ngx_spawn_process(ngx_cycle_t *cycle, ngx_spawn_proc_pt proc, void *data, char *name, ngx_int_t respawn); ngx_pid_t ngx_exec(ngx_cycle_t *cycle, ngx_exec_ctx_t *ctx); -void ngx_signal_processes(ngx_cycle_t *cycle, ngx_int_t signo); void ngx_respawn_processes(ngx_cycle_t *cycle); void ngx_process_get_status(void); |