inconsistency reported by Basile

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9410 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Damien Doligez 2009-11-04 12:25:47 +00:00
parent f5efbb60b1
commit f2a404eb0c
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ intnat caml_stat_minor_collections = 0,
caml_stat_compactions = 0,
caml_stat_heap_chunks = 0;
extern asize_t caml_major_heap_increment; /* bytes; see major_gc.c */
extern uintnat caml_major_heap_increment; /* bytes; see major_gc.c */
extern uintnat caml_percent_free; /* see major_gc.c */
extern uintnat caml_percent_max; /* see compact.c */
extern uintnat caml_allocation_policy; /* see freelist.c */

View File

@ -30,7 +30,7 @@
#include "weak.h"
uintnat caml_percent_free;
intnat caml_major_heap_increment;
uintnat caml_major_heap_increment;
CAMLexport char *caml_heap_start;
char *caml_gc_sweep_hp;
int caml_gc_phase; /* always Phase_mark, Phase_sweep, or Phase_idle */