2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / mono-gc.h
1 /*
2  * mono-gc.h: GC related public interface
3  *
4  */
5 #ifndef __METADATA_MONO_GC_H__
6 #define __METADATA_MONO_GC_H__
7
8 #include <glib.h>
9
10 void   mono_gc_collect         (int generation);
11 int    mono_gc_max_generation  (void);
12 gint64 mono_gc_get_used_size   (void);
13 gint64 mono_gc_get_heap_size   (void);
14
15 #endif /* __METADATA_MONO_GC_H__ */
16