blob: 15d9c0d1d478cbe582392d1e8886f6d752f8f9e2 [file] [log] [blame]
Igor Sysoeva6717c42002-12-23 06:29:22 +00001#ifndef _NGX_PROCESS_H_INCLUDED_
2#define _NGX_PROCESS_H_INCLUDED_
3
4
Igor Sysoev160d7742003-11-19 16:26:41 +00005typedef pid_t ngx_pid_t;
6
Igor Sysoeva6717c42002-12-23 06:29:22 +00007#define ngx_getpid getpid
8
9
Igor Sysoev160d7742003-11-19 16:26:41 +000010int ngx_spawn_process(ngx_log_t *log);
11void ngx_sigchld_handler(int signo);
12
13
Igor Sysoeva6717c42002-12-23 06:29:22 +000014#endif /* _NGX_PROCESS_H_INCLUDED_ */