31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* Caml Special Light */
|
|
/* */
|
|
/* Damien Doligez, projet Para, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 1995 Institut National de Recherche en Informatique et */
|
|
/* Automatique. Distributed only by permission. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
#ifndef _gc_ctrl_
|
|
#define _gc_ctrl_
|
|
|
|
#include "misc.h"
|
|
|
|
extern long
|
|
stat_minor_words,
|
|
stat_promoted_words,
|
|
stat_major_words,
|
|
stat_minor_collections,
|
|
stat_major_collections,
|
|
stat_heap_size;
|
|
|
|
void init_gc P((long, long, int, int));
|
|
|
|
|
|
#endif /* _gc_ctrl_ */
|