comparison src/core/ngx_cycle.c @ 444:42d11f017717

nginx-0.1.0-2004-09-29-20:00:49 import; remove years from copyright
author Igor Sysoev <igor@sysoev.ru>
date Wed, 29 Sep 2004 16:00:49 +0000
parents da8c5707af39
children 288f249897e7
comparison
equal deleted inserted replaced
443:33aec431094b 444:42d11f017717
1 1
2 /* 2 /*
3 * Copyright (C) 2002-2004 Igor Sysoev 3 * Copyright (C) Igor Sysoev
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>
27 27
28 /* STUB NAME */ 28 /* STUB NAME */
29 static ngx_connection_t dumb; 29 static ngx_connection_t dumb;
30 /* STUB */ 30 /* STUB */
31 31
32 #ifdef NGX_ERROR_LOG_PATH
32 static ngx_str_t error_log = ngx_string(NGX_ERROR_LOG_PATH); 33 static ngx_str_t error_log = ngx_string(NGX_ERROR_LOG_PATH);
34 #else
35 static ngx_str_t error_log = ngx_null_string;
36 #endif
33 37
34 38
35 ngx_cycle_t *ngx_init_cycle(ngx_cycle_t *old_cycle) 39 ngx_cycle_t *ngx_init_cycle(ngx_cycle_t *old_cycle)
36 { 40 {
37 void *rv; 41 void *rv;