diff options
author | Ruslan Ermilov <ru@nginx.com> | 2015-04-23 14:17:40 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2015-04-23 14:17:40 +0300 |
commit | 33b8e5bc0698c96177a69aa783375aa47ac980d1 (patch) | |
tree | 86a11f849857f4c20970ba14c2943608bbb9d4c7 /src/core/ngx_connection.c | |
parent | c1882d9f3f05f39468ebbc00c5f21f01ec691fd9 (diff) | |
download | nginx-33b8e5bc0698c96177a69aa783375aa47ac980d1.tar.gz nginx-33b8e5bc0698c96177a69aa783375aa47ac980d1.zip |
Removed the obsolete rtsig module.
Diffstat (limited to 'src/core/ngx_connection.c')
-rw-r--r-- | src/core/ngx_connection.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c index 025fbeb4f..52b97ce89 100644 --- a/src/core/ngx_connection.c +++ b/src/core/ngx_connection.c @@ -764,10 +764,7 @@ ngx_close_listening_sockets(ngx_cycle_t *cycle) if (c) { if (c->read->active) { - if (ngx_event_flags & NGX_USE_RTSIG_EVENT) { - ngx_del_conn(c, NGX_CLOSE_EVENT); - - } else if (ngx_event_flags & NGX_USE_EPOLL_EVENT) { + if (ngx_event_flags & NGX_USE_EPOLL_EVENT) { /* * it seems that Linux-2.6.x OpenVZ sends events |