From a962506498d3930bea4e34bc21d261613065f98f Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 28 Aug 2009 08:12:35 +0000 Subject: FreeBSD and Linux AIO support --- src/core/ngx_file.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/ngx_file.h') diff --git a/src/core/ngx_file.h b/src/core/ngx_file.h index 56315433b..8b502539a 100644 --- a/src/core/ngx_file.h +++ b/src/core/ngx_file.h @@ -22,10 +22,15 @@ struct ngx_file_s { ngx_log_t *log; +#if (NGX_HAVE_FILE_AIO) + ngx_event_aio_t *aio; +#endif + unsigned valid_info:1; unsigned directio:1; }; + #define NGX_MAX_PATH_LEVEL 3 -- cgit