diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-01-23 09:26:18 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-01-23 09:26:18 +0000 |
commit | 5c8c52f858c0112e9200ed1c4798a89e6c366bf2 (patch) | |
tree | 0da512e041a7706006d8b182a7a6192ffe71192a /src/core | |
parent | 54c80845ea1240336dc0c91ac0961687b6122789 (diff) | |
download | nginx-5c8c52f858c0112e9200ed1c4798a89e6c366bf2.tar.gz nginx-5c8c52f858c0112e9200ed1c4798a89e6c366bf2.zip |
nginx-0.0.1-2004-01-23-12:26:18 import
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/nginx.c | 4 | ||||
-rw-r--r-- | src/core/ngx_config.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index f9c4fe75b..4ed865606 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -635,8 +635,8 @@ static void ngx_worker_process_cycle(ngx_cycle_t *cycle, void *data) if (ngx_quit) { ngx_log_error(NGX_LOG_INFO, cycle->log, 0, - "gracefully shutdowning"); - ngx_setproctitle("worker process is shutdowning"); + "gracefully shutting down"); + ngx_setproctitle("worker process is shutting down"); break; } diff --git a/src/core/ngx_config.h b/src/core/ngx_config.h index 774bac033..e6772bd84 100644 --- a/src/core/ngx_config.h +++ b/src/core/ngx_config.h @@ -2,9 +2,11 @@ #define _NGX_CONFIG_H_INCLUDED_ +#if 0 /* STUB to allocate a big ngx_connections */ #undef FD_SETSIZE #define FD_SETSIZE 5000 +#endif #if defined __FreeBSD__ |