blob: 15d9c0d1d478cbe582392d1e8886f6d752f8f9e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _NGX_PROCESS_H_INCLUDED_
#define _NGX_PROCESS_H_INCLUDED_
typedef pid_t ngx_pid_t;
#define ngx_getpid getpid
int ngx_spawn_process(ngx_log_t *log);
void ngx_sigchld_handler(int signo);
#endif /* _NGX_PROCESS_H_INCLUDED_ */
|