diff options
author | Valentin Bartenev <vbart@nginx.com> | 2015-03-14 17:37:07 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2015-03-14 17:37:07 +0300 |
commit | 305fc021db799c87d751f0f1f5e99afee7bb2b3b (patch) | |
tree | 8c3cf7a86f08ede19803a9f9beecb33cc0d9ebb3 /src/os/unix/ngx_linux_config.h | |
parent | 08e05a40422300a25e3b4e5b915592d7b2c41592 (diff) | |
download | nginx-305fc021db799c87d751f0f1f5e99afee7bb2b3b.tar.gz nginx-305fc021db799c87d751f0f1f5e99afee7bb2b3b.zip |
Thread pools implementation.
Diffstat (limited to 'src/os/unix/ngx_linux_config.h')
-rw-r--r-- | src/os/unix/ngx_linux_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_linux_config.h b/src/os/unix/ngx_linux_config.h index c6c02c93e..0c0b168d7 100644 --- a/src/os/unix/ngx_linux_config.h +++ b/src/os/unix/ngx_linux_config.h @@ -93,11 +93,11 @@ extern ssize_t sendfile(int s, int fd, int32_t *offset, size_t size); #endif -#if (NGX_HAVE_FILE_AIO) #if (NGX_HAVE_SYS_EVENTFD_H) #include <sys/eventfd.h> #endif #include <sys/syscall.h> +#if (NGX_HAVE_FILE_AIO) #include <linux/aio_abi.h> typedef struct iocb ngx_aiocb_t; #endif |