comparison src/event/ngx_event_busy_lock.h @ 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 d620f497c50f
children
comparison
equal deleted inserted replaced
6015:e11a8e7e8e0c 6016:457ec43dd8d5
44 ngx_uint_t max_waiting; 44 ngx_uint_t max_waiting;
45 45
46 ngx_event_busy_lock_ctx_t *events; 46 ngx_event_busy_lock_ctx_t *events;
47 ngx_event_busy_lock_ctx_t *last; 47 ngx_event_busy_lock_ctx_t *last;
48 48
49 #if (NGX_THREADS) 49 #if (NGX_OLD_THREADS)
50 ngx_mutex_t *mutex; 50 ngx_mutex_t *mutex;
51 #endif 51 #endif
52 } ngx_event_busy_lock_t; 52 } ngx_event_busy_lock_t;
53 53
54 54