comparison src/event/ngx_event_mutex.c @ 6016:457ec43dd8d5

Renamed NGX_THREADS to NGX_OLD_THREADS because of deprecation. It's mostly dead code and the original idea of worker threads has been rejected.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 04 Mar 2015 18:26:25 +0300
parents 3377f9459e99
children
comparison
equal deleted inserted replaced
6015:e11a8e7e8e0c 6016:457ec43dd8d5
26 } 26 }
27 27
28 m->last = ev; 28 m->last = ev;
29 ev->next = NULL; 29 ev->next = NULL;
30 30
31 #if (NGX_THREADS0) 31 #if (NGX_OLD_THREADS0)
32 ev->light = 1; 32 ev->light = 1;
33 #endif 33 #endif
34 34
35 ngx_add_timer(ev, timer); 35 ngx_add_timer(ev, timer);
36 36