mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00

*) Change: the "bl" and "af" parameters of the "listen" directive was renamed to the "backlog" and "accept_filter". *) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen" directive. *) Change: the "$msec" log parameter does not require now the additional the gettimeofday() system call. *) Feature: the -t switch now tests the "listen" directives. *) Bugfix: if the invalid address was specified in the "listen" directive, then after the -HUP signal nginx left an open socket in the CLOSED state. *) Bugfix: the mime type may be incorrectly set to default value for index file with variable in the name; the bug had appeared in 0.3.0. *) Feature: the "timer_resolution" directive. *) Feature: the millisecond "$upstream_response_time" log parameter. *) Bugfix: a temporary file with client request body now is removed just after the response header was transferred to a client. *) Bugfix: OpenSSL 0.9.6 compatibility. *) Bugfix: the SSL certificate and key file paths could not be relative. *) Bugfix: the "ssl_prefer_server_ciphers" directive did not work in the ngx_imap_ssl_module. *) Bugfix: the "ssl_protocols" directive allowed to specify the single protocol only.
75 lines
3.1 KiB
C
75 lines
3.1 KiB
C
|
|
/*
|
|
* Copyright (C) Igor Sysoev
|
|
*/
|
|
|
|
|
|
#ifndef _NGX_EVENT_POSTED_H_INCLUDED_
|
|
#define _NGX_EVENT_POSTED_H_INCLUDED_
|
|
|
|
|
|
#include <ngx_config.h>
|
|
#include <ngx_core.h>
|
|
#include <ngx_event.h>
|
|
|
|
|
|
#if (NGX_THREADS)
|
|
extern ngx_mutex_t *ngx_posted_events_mutex;
|
|
#endif
|
|
|
|
|
|
#define ngx_locked_post_event(ev, queue) \
|
|
\
|
|
if (ev->prev == NULL) { \
|
|
ev->next = (ngx_event_t *) *queue; \
|
|
ev->prev = (ngx_event_t **) queue; \
|
|
*queue = ev; \
|
|
\
|
|
if (ev->next) { \
|
|
ev->next->prev = &ev->next; \
|
|
} \
|
|
\
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, ev->log, 0, "post event %p", ev); \
|
|
\
|
|
} else { \
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, ev->log, 0, \
|
|
"update posted event %p", ev); \
|
|
}
|
|
|
|
|
|
#define ngx_post_event(ev, queue) \
|
|
\
|
|
ngx_mutex_lock(ngx_posted_events_mutex); \
|
|
ngx_locked_post_event(ev, queue); \
|
|
ngx_mutex_unlock(ngx_posted_events_mutex);
|
|
|
|
|
|
#define ngx_delete_posted_event(ev) \
|
|
\
|
|
*(ev->prev) = ev->next; \
|
|
\
|
|
if (ev->next) { \
|
|
ev->next->prev = ev->prev; \
|
|
} \
|
|
\
|
|
ev->prev = NULL; \
|
|
ngx_log_debug1(NGX_LOG_DEBUG_CORE, ev->log, 0, \
|
|
"delete posted event %p", ev);
|
|
|
|
|
|
|
|
void ngx_event_process_posted(ngx_cycle_t *cycle,
|
|
ngx_thread_volatile ngx_event_t **posted);
|
|
void ngx_wakeup_worker_thread(ngx_cycle_t *cycle);
|
|
|
|
#if (NGX_THREADS)
|
|
ngx_int_t ngx_event_thread_process_posted(ngx_cycle_t *cycle);
|
|
#endif
|
|
|
|
|
|
extern ngx_thread_volatile ngx_event_t *ngx_posted_accept_events;
|
|
extern ngx_thread_volatile ngx_event_t *ngx_posted_events;
|
|
|
|
|
|
#endif /* _NGX_EVENT_POSTED_H_INCLUDED_ */
|