comparison src/os/unix/ngx_files.h @ 500:13b908d5338a NGINX_0_8_2

nginx 0.8.2 *) Bugfix: in open_file_cache and proxy/fastcgi cache interaction on start up. *) Bugfix: open_file_cache might cache open file descriptors too long.
author Igor Sysoev <http://sysoev.ru>
date Mon, 15 Jun 2009 00:00:00 +0400
parents ed5e10fb40fc
children 86dad910eeb6
comparison
equal deleted inserted replaced
499:2db7806a88bc 500:13b908d5338a
16 typedef struct stat ngx_file_info_t; 16 typedef struct stat ngx_file_info_t;
17 typedef ino_t ngx_file_uniq_t; 17 typedef ino_t ngx_file_uniq_t;
18 18
19 19
20 typedef struct { 20 typedef struct {
21 DIR *dir; 21 DIR *dir;
22 struct dirent *de; 22 struct dirent *de;
23 struct stat info; 23 struct stat info;
24 24
25 unsigned type:8; 25 unsigned type:8;
26 unsigned valid_info:1; 26 unsigned valid_info:1;
27 unsigned valid_type:1; 27 unsigned valid_type:1;
28 } ngx_dir_t; 28 } ngx_dir_t;
29 29
30 30
31 typedef struct { 31 typedef struct {
32 size_t n; 32 size_t n;