comparison src/core/ngx_open_file_cache.h @ 3899:e7cd13b7f759

Use more precise stat.st_blocks to account cache size on Unix instead of file length rounded to a file system block size. There is no similar way on Windows, so rounding to a cache->bsize is kept.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 22 Apr 2011 10:06:43 +0000
parents 975f0558aab3
children d620f497c50f
comparison
equal deleted inserted replaced
3898:bd1222fb0192 3899:e7cd13b7f759
18 typedef struct { 18 typedef struct {
19 ngx_fd_t fd; 19 ngx_fd_t fd;
20 ngx_file_uniq_t uniq; 20 ngx_file_uniq_t uniq;
21 time_t mtime; 21 time_t mtime;
22 off_t size; 22 off_t size;
23 off_t fs_size;
23 off_t directio; 24 off_t directio;
24 size_t read_ahead; 25 size_t read_ahead;
25 26
26 ngx_err_t err; 27 ngx_err_t err;
27 char *failed; 28 char *failed;