diff options
author | Valentin Bartenev <vbart@nginx.com> | 2013-07-13 03:24:30 +0400 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2013-07-13 03:24:30 +0400 |
commit | 615d55884376040fc2b42d9f47f981cd700b384a (patch) | |
tree | 58267bfbfcee2de0e4a8b344a8753a929eefdce2 /src/os/unix/ngx_readv_chain.c | |
parent | d10251030ae4553e5f5338b267750f63cd05d1b3 (diff) | |
download | nginx-615d55884376040fc2b42d9f47f981cd700b384a.tar.gz nginx-615d55884376040fc2b42d9f47f981cd700b384a.zip |
Events: honor NGX_USE_GREEDY_EVENT when kqueue support is enabled.
Currently this flag is needed for epoll and rtsig, and though these methods
usually present on different platforms than kqueue, nginx can be compiled to
support all of them.
Diffstat (limited to 'src/os/unix/ngx_readv_chain.c')
-rw-r--r-- | src/os/unix/ngx_readv_chain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_readv_chain.c b/src/os/unix/ngx_readv_chain.c index 7b6badfa8..c2c21b407 100644 --- a/src/os/unix/ngx_readv_chain.c +++ b/src/os/unix/ngx_readv_chain.c @@ -136,7 +136,7 @@ ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *chain) return n; } - if (n < size) { + if (n < size && !(ngx_event_flags & NGX_USE_GREEDY_EVENT)) { rev->ready = 0; } |