comparison src/core/ngx_garbage_collector.h @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children 74b1868dd3cd
comparison
equal deleted inserted replaced
-1:000000000000 0:f0b350454894
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #ifndef _NGX_GARBAGE_COLLECTOR_H_INCLUDED_
8 #define _NGX_GARBAGE_COLLECTOR_H_INCLUDED_
9
10
11 typedef struct ngx_gc_s ngx_gc_t;
12
13 typedef int (*ngx_gc_handler_pt) (ngx_gc_t *ctx, ngx_str_t *name,
14 ngx_dir_t *dir);
15
16
17 struct ngx_gc_s {
18 ngx_path_t *path;
19 u_int deleted;
20 off_t freed;
21 ngx_gc_handler_pt handler;
22 ngx_log_t *log;
23 };
24
25
26 int ngx_garbage_collector_temp_handler(ngx_gc_t *ctx, ngx_str_t *name,
27 ngx_dir_t *dir);
28
29
30 #endif /* _NGX_GARBAGE_COLLECTOR_H_INCLUDED_ */