diff options
author | Ruslan Ermilov <ru@nginx.com> | 2016-03-31 22:00:33 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2016-03-31 22:00:33 +0300 |
commit | 5ad6e01b464efe0eb140294fa15d71da38738ed3 (patch) | |
tree | 8b4cfefb5b332f2f224385a15868cdccbb4a0d1b /src/os/win32/ngx_os.h | |
parent | 60a6551e1f28337f7b358719fe46d4c91409dbf3 (diff) | |
download | nginx-5ad6e01b464efe0eb140294fa15d71da38738ed3.tar.gz nginx-5ad6e01b464efe0eb140294fa15d71da38738ed3.zip |
Fixed ngx_os_signal_process() prototype.
Diffstat (limited to 'src/os/win32/ngx_os.h')
-rw-r--r-- | src/os/win32/ngx_os.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/win32/ngx_os.h b/src/os/win32/ngx_os.h index 8bce9a289..98210a168 100644 --- a/src/os/win32/ngx_os.h +++ b/src/os/win32/ngx_os.h @@ -35,7 +35,7 @@ typedef struct { ngx_int_t ngx_os_init(ngx_log_t *log); void ngx_os_status(ngx_log_t *log); -ngx_int_t ngx_os_signal_process(ngx_cycle_t *cycle, char *sig, ngx_int_t pid); +ngx_int_t ngx_os_signal_process(ngx_cycle_t *cycle, char *sig, ngx_pid_t pid); ssize_t ngx_wsarecv(ngx_connection_t *c, u_char *buf, size_t size); ssize_t ngx_overlapped_wsarecv(ngx_connection_t *c, u_char *buf, size_t size); |