comparison src/os/unix/ngx_posix_init.c @ 531:c3bd8cdabb8f release-0.1.40

nginx-0.1.40-RELEASE import *) Bugfix: if a client sent too long header line, then the request information did not logged in the error log. *) Bugfix: the "Set-Cookie" header line was not transferred when the "X-Accel-Redirect" was used; the bug had appeared in 0.1.39. *) Bugfix: the "Content-Disposition" header line was not transferred when the "X-Accel-Redirect" was used. *) Bugfix: the master process did not close the listen socket on the SIGQUIT signal. *) Bugfix: after on-line upgrade on Linux and Solaris the process name became shorter in the "ps" command.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 25 Jul 2005 09:41:38 +0000
parents 9b8c906f6e63
children 371c1cee100d
comparison
equal deleted inserted replaced
530:1feed3cc8571 531:c3bd8cdabb8f
4 */ 4 */
5 5
6 6
7 #include <ngx_config.h> 7 #include <ngx_config.h>
8 #include <ngx_core.h> 8 #include <ngx_core.h>
9 #include <ngx_setproctitle.h>
10 9
11 10
12 ngx_int_t ngx_ncpu; 11 ngx_int_t ngx_ncpu;
13 ngx_int_t ngx_max_sockets; 12 ngx_int_t ngx_max_sockets;
14 ngx_uint_t ngx_inherited_nonblocking; 13 ngx_uint_t ngx_inherited_nonblocking;
135 } 134 }
136 135
137 136
138 void ngx_posix_status(ngx_log_t *log) 137 void ngx_posix_status(ngx_log_t *log)
139 { 138 {
140 ngx_log_error(NGX_LOG_INFO, log, 0, 139 ngx_log_error(NGX_LOG_NOTICE, log, 0,
141 "getrlimit(RLIMIT_NOFILE): %r:%r", 140 "getrlimit(RLIMIT_NOFILE): %r:%r",
142 rlmt.rlim_cur, rlmt.rlim_max); 141 rlmt.rlim_cur, rlmt.rlim_max);
143 } 142 }
144 143
145 144