New test.
[mono.git] / mono / io-layer / collection.h
1 /*
2  * collection.h:  Garbage collection for handles
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2004 Novell, Inc.
8  */
9
10 #ifndef _WAPI_COLLECTION_H_
11 #define _WAPI_COLLECTION_H_
12
13 #include <glib.h>
14
15 G_BEGIN_DECLS
16
17 #define _WAPI_HANDLE_COLLECTION_UPDATE_INTERVAL         10
18 #define _WAPI_HANDLE_COLLECTION_EXPIRED_INTERVAL        60
19
20 #include <mono/io-layer/shared.h>
21
22 extern void _wapi_collection_init (void);
23 extern void _wapi_handle_collect (void);
24
25 G_END_DECLS
26
27 #endif /* _WAPI_COLLECTION_H_ */