comparison src/os/unix/ngx_linux_config.h @ 6018:466bd63b63d1

Thread pools implementation.
author Valentin Bartenev <vbart@nginx.com>
date Sat, 14 Mar 2015 17:37:07 +0300
parents 31dd63dcb9ea
children adba26ff70b5
comparison
equal deleted inserted replaced
6017:83d54192e97b 6018:466bd63b63d1
91 #if (NGX_HAVE_EPOLL) 91 #if (NGX_HAVE_EPOLL)
92 #include <sys/epoll.h> 92 #include <sys/epoll.h>
93 #endif 93 #endif
94 94
95 95
96 #if (NGX_HAVE_FILE_AIO)
97 #if (NGX_HAVE_SYS_EVENTFD_H) 96 #if (NGX_HAVE_SYS_EVENTFD_H)
98 #include <sys/eventfd.h> 97 #include <sys/eventfd.h>
99 #endif 98 #endif
100 #include <sys/syscall.h> 99 #include <sys/syscall.h>
100 #if (NGX_HAVE_FILE_AIO)
101 #include <linux/aio_abi.h> 101 #include <linux/aio_abi.h>
102 typedef struct iocb ngx_aiocb_t; 102 typedef struct iocb ngx_aiocb_t;
103 #endif 103 #endif
104 104
105 105