comparison auto/sources @ 6032:ac7c7241ed8c

Removed busy locks.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 20 Mar 2015 06:45:32 +0300
parents e284f3ff6831
children 682d8222c6b1
comparison
equal deleted inserted replaced
6031:c8acea7c7041 6032:ac7c7241ed8c
90 EVENT_INCS="src/event src/event/modules" 90 EVENT_INCS="src/event src/event/modules"
91 91
92 EVENT_DEPS="src/event/ngx_event.h \ 92 EVENT_DEPS="src/event/ngx_event.h \
93 src/event/ngx_event_timer.h \ 93 src/event/ngx_event_timer.h \
94 src/event/ngx_event_posted.h \ 94 src/event/ngx_event_posted.h \
95 src/event/ngx_event_busy_lock.h \
96 src/event/ngx_event_connect.h \ 95 src/event/ngx_event_connect.h \
97 src/event/ngx_event_pipe.h" 96 src/event/ngx_event_pipe.h"
98 97
99 EVENT_SRCS="src/event/ngx_event.c \ 98 EVENT_SRCS="src/event/ngx_event.c \
100 src/event/ngx_event_timer.c \ 99 src/event/ngx_event_timer.c \
101 src/event/ngx_event_posted.c \ 100 src/event/ngx_event_posted.c \
102 src/event/ngx_event_busy_lock.c \
103 src/event/ngx_event_accept.c \ 101 src/event/ngx_event_accept.c \
104 src/event/ngx_event_connect.c \ 102 src/event/ngx_event_connect.c \
105 src/event/ngx_event_pipe.c" 103 src/event/ngx_event_pipe.c"
106 104
107 105
295 src/http/ngx_http_core_module.h \ 293 src/http/ngx_http_core_module.h \
296 src/http/ngx_http_cache.h \ 294 src/http/ngx_http_cache.h \
297 src/http/ngx_http_variables.h \ 295 src/http/ngx_http_variables.h \
298 src/http/ngx_http_script.h \ 296 src/http/ngx_http_script.h \
299 src/http/ngx_http_upstream.h \ 297 src/http/ngx_http_upstream.h \
300 src/http/ngx_http_upstream_round_robin.h \ 298 src/http/ngx_http_upstream_round_robin.h"
301 src/http/ngx_http_busy_lock.h"
302 299
303 HTTP_SRCS="src/http/ngx_http.c \ 300 HTTP_SRCS="src/http/ngx_http.c \
304 src/http/ngx_http_core_module.c \ 301 src/http/ngx_http_core_module.c \
305 src/http/ngx_http_special_response.c \ 302 src/http/ngx_http_special_response.c \
306 src/http/ngx_http_request.c \ 303 src/http/ngx_http_request.c \
320 src/http/modules/ngx_http_chunked_filter_module.c \ 317 src/http/modules/ngx_http_chunked_filter_module.c \
321 src/http/modules/ngx_http_range_filter_module.c \ 318 src/http/modules/ngx_http_range_filter_module.c \
322 src/http/modules/ngx_http_headers_filter_module.c \ 319 src/http/modules/ngx_http_headers_filter_module.c \
323 src/http/modules/ngx_http_not_modified_filter_module.c" 320 src/http/modules/ngx_http_not_modified_filter_module.c"
324 321
325 # STUB
326 HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c"
327
328 HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c 322 HTTP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c
329 323
330 HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c 324 HTTP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c
331 325
332 326