1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Damien Doligez, projet Para, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
#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,
|
1997-05-13 07:45:38 -07:00
|
|
|
stat_heap_size,
|
|
|
|
stat_compactions;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
void init_gc (unsigned long, unsigned long, unsigned long,
|
|
|
|
unsigned long, unsigned long, unsigned long);
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* _gc_ctrl_ */
|