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
|
|
|
(* *)
|
1997-10-14 06:17:48 -07:00
|
|
|
(* Damien Doligez, projet Para, INRIA Rocquencourt *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
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
|
|
|
type stat = {
|
|
|
|
minor_words : int;
|
|
|
|
promoted_words : int;
|
|
|
|
major_words : int;
|
|
|
|
minor_collections : int;
|
|
|
|
major_collections : int;
|
1995-08-08 06:37:34 -07:00
|
|
|
heap_words : int;
|
1995-05-04 03:15:53 -07:00
|
|
|
heap_chunks : int;
|
|
|
|
live_words : int;
|
|
|
|
live_blocks : int;
|
|
|
|
free_words : int;
|
|
|
|
free_blocks : int;
|
|
|
|
largest_free : int;
|
1997-05-13 07:45:38 -07:00
|
|
|
fragments : int;
|
|
|
|
compactions : int
|
|
|
|
};;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
type control = {
|
|
|
|
mutable minor_heap_size : int;
|
|
|
|
mutable major_heap_increment : int;
|
|
|
|
mutable space_overhead : int;
|
1997-05-13 07:45:38 -07:00
|
|
|
mutable verbose : bool;
|
|
|
|
mutable max_overhead : int;
|
|
|
|
mutable stack_limit : int
|
|
|
|
};;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-05-13 07:45:38 -07:00
|
|
|
external stat : unit -> stat = "gc_stat";;
|
|
|
|
external get : unit -> control = "gc_get";;
|
|
|
|
external set : control -> unit = "gc_set";;
|
|
|
|
external minor : unit -> unit = "gc_minor";;
|
|
|
|
external major : unit -> unit = "gc_major";;
|
|
|
|
external full_major : unit -> unit = "gc_full_major";;
|
|
|
|
external compact : unit -> unit = "gc_compaction";;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-05-13 07:45:38 -07:00
|
|
|
open Printf;;
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
let print_stat c =
|
|
|
|
let st = stat () in
|
|
|
|
fprintf c "minor_words: %d\n" st.minor_words;
|
|
|
|
fprintf c "promoted_words: %d\n" st.promoted_words;
|
|
|
|
fprintf c "major_words: %d\n" st.major_words;
|
|
|
|
fprintf c "minor_collections: %d\n" st.minor_collections;
|
|
|
|
fprintf c "major_collections: %d\n" st.major_collections;
|
1995-08-08 06:37:34 -07:00
|
|
|
fprintf c "heap_words: %d\n" st.heap_words;
|
1995-05-04 03:15:53 -07:00
|
|
|
fprintf c "heap_chunks: %d\n" st.heap_chunks;
|
|
|
|
fprintf c "live_words: %d\n" st.live_words;
|
|
|
|
fprintf c "live_blocks: %d\n" st.live_blocks;
|
|
|
|
fprintf c "free_words: %d\n" st.free_words;
|
|
|
|
fprintf c "free_blocks: %d\n" st.free_blocks;
|
|
|
|
fprintf c "largest_free: %d\n" st.largest_free;
|
1997-05-13 07:45:38 -07:00
|
|
|
fprintf c "fragments: %d\n" st.fragments;
|
|
|
|
fprintf c "compactions: %d\n" st.compactions;
|
|
|
|
;;
|