blob: 4c060de1af6a63daf350712c8ca9fe99173e8d12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/***********************************************************************/
/* */
/* Objective Caml */
/* */
/* Damien Doligez, projet Para, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* en 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,
stat_compactions;
void init_gc (unsigned long, unsigned long, unsigned long,
unsigned long, unsigned long, unsigned long);
#ifdef DEBUG
void heap_check (void);
#endif
#endif /* _gc_ctrl_ */
|