summaryrefslogtreecommitdiffstats
path: root/byterun/gc_ctrl.h
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2004-01-02 19:23:29 +0000
committerDamien Doligez <damien.doligez-inria.fr>2004-01-02 19:23:29 +0000
commit0c7aecb88dc696f66f49f3bed54a037361a26b8d (patch)
tree32bde8a45b8881d3d121fd39cc1270980f596096 /byterun/gc_ctrl.h
parent7ba8c1ca1d044232ed6d81d04a8c46800cf15097 (diff)
depollution suite (et fin?) (PR#1914 et PR#1956)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6047 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/gc_ctrl.h')
-rw-r--r--byterun/gc_ctrl.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/byterun/gc_ctrl.h b/byterun/gc_ctrl.h
index 8b8b89dae..b5a2e87f7 100644
--- a/byterun/gc_ctrl.h
+++ b/byterun/gc_ctrl.h
@@ -19,24 +19,24 @@
#include "misc.h"
extern double
- stat_minor_words,
- stat_promoted_words,
- stat_major_words;
+ caml_stat_minor_words,
+ caml_stat_promoted_words,
+ caml_stat_major_words;
extern long
- stat_minor_collections,
- stat_major_collections,
- stat_heap_size,
- stat_top_heap_size,
- stat_compactions,
- stat_heap_chunks;
+ caml_stat_minor_collections,
+ caml_stat_major_collections,
+ caml_stat_heap_size,
+ caml_stat_top_heap_size,
+ caml_stat_compactions,
+ caml_stat_heap_chunks;
-void init_gc (unsigned long, unsigned long, unsigned long,
- unsigned long, unsigned long);
+void caml_init_gc (unsigned long, unsigned long, unsigned long,
+ unsigned long, unsigned long);
#ifdef DEBUG
-void heap_check (void);
+void caml_heap_check (void);
#endif
#endif /* CAML_GC_CTRL_H */