comparison src/event/ngx_event_timer.c @ 212:679f60139863

nginx-0.0.1-2003-12-19-11:15:11 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 19 Dec 2003 08:15:11 +0000
parents 00cafae0bdf1
children f536f91e8e99
comparison
equal deleted inserted replaced
211:fd9fecc4193f 212:679f60139863
20 return NGX_OK; 20 return NGX_OK;
21 } 21 }
22 22
23 ngx_event_timer_rbtree = &ngx_event_timer_sentinel; 23 ngx_event_timer_rbtree = &ngx_event_timer_sentinel;
24 ngx_event_timer_sentinel.left = &ngx_event_timer_sentinel; 24 ngx_event_timer_sentinel.left = &ngx_event_timer_sentinel;
25
26 #if 0
25 ngx_event_timer_sentinel.right = &ngx_event_timer_sentinel; 27 ngx_event_timer_sentinel.right = &ngx_event_timer_sentinel;
26 ngx_event_timer_sentinel.parent = &ngx_event_timer_sentinel; 28 ngx_event_timer_sentinel.parent = &ngx_event_timer_sentinel;
29 #endif
27 30
28 return NGX_OK; 31 return NGX_OK;
29 } 32 }
30 33
31 34