From 5c170306718a8fe5f606f7bdd2d492a54c1cf0ce Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Fri, 23 May 2014 16:37:05 +0400 Subject: Events: use eventfd() instead of syscall(SYS_eventfd) if possible. This fixes --with-file-aio support on systems that lack eventfd() syscall, notably aarch64 Linux. The syscall(SYS_eventfd) may still be necessary on systems that have eventfd() syscall in the kernel but lack it in glibc, e.g. as seen in the current CentOS 5 release. --- src/os/unix/ngx_linux_config.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/os/unix/ngx_linux_config.h') diff --git a/src/os/unix/ngx_linux_config.h b/src/os/unix/ngx_linux_config.h index 72594bac0..c6c02c93e 100644 --- a/src/os/unix/ngx_linux_config.h +++ b/src/os/unix/ngx_linux_config.h @@ -94,6 +94,9 @@ extern ssize_t sendfile(int s, int fd, int32_t *offset, size_t size); #if (NGX_HAVE_FILE_AIO) +#if (NGX_HAVE_SYS_EVENTFD_H) +#include +#endif #include #include typedef struct iocb ngx_aiocb_t; -- cgit