diff options
Diffstat (limited to 'src/nxt_master_process.h')
-rw-r--r-- | src/nxt_master_process.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/nxt_master_process.h b/src/nxt_master_process.h new file mode 100644 index 00000000..8018c6b8 --- /dev/null +++ b/src/nxt_master_process.h @@ -0,0 +1,19 @@ + +/* + * Copyright (C) Igor Sysoev + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_UNIX_MASTER_PROCESS_H_INCLUDED_ +#define _NXT_UNIX_MASTER_PROCESS_H_INCLUDED_ + + +nxt_int_t nxt_master_process_start(nxt_thread_t *thr, nxt_cycle_t *cycle); +void nxt_master_stop_worker_processes(nxt_cycle_t *cycle); +void nxt_worker_process_start(void *data); + + +extern const nxt_event_sig_t nxt_master_process_signals[]; + + +#endif /* _NXT_UNIX_MASTER_PROCESS_H_INCLUDED_ */ |