module Stat:sig..end
type t = {
|
minor_words : |
(* | Number of words allocated in the minor heap since the program was started. This number is accurate in byte-code programs, but only an approximation in programs compiled to native code. | *) |
|
promoted_words : |
(* | Number of words allocated in the minor heap that survived a minor collection and were moved to the major heap since the program was started. | *) |
|
major_words : |
(* | Number of words allocated in the major heap, including the promoted words, since the program was started. | *) |
|
minor_collections : |
(* | Number of minor collections since the program was started. | *) |
|
major_collections : |
(* | Number of major collection cycles completed since the program was started. | *) |
|
heap_words : |
(* | Total size of the major heap, in words. | *) |
|
heap_chunks : |
(* | Number of contiguous pieces of memory that make up the major heap. | *) |
|
live_words : |
(* | Number of words of live data in the major heap, including the header words. | *) |
|
live_blocks : |
(* | Number of live blocks in the major heap. | *) |
|
free_words : |
(* | Number of words in the free list. | *) |
|
free_blocks : |
(* | Number of blocks in the free list. | *) |
|
largest_free : |
(* | Size (in words) of the largest block in the free list. | *) |
|
fragments : |
(* | Number of wasted words due to fragmentation. These are 1-words free blocks placed between two live blocks. They are not available for allocation. | *) |
|
compactions : |
(* | Number of heap compactions since the program was started. | *) |
|
top_heap_words : |
(* | Maximum size reached by the major heap, in words. | *) |
|
stack_size : |
(* | Current size of the stack, in words. | *) |
val stack_size : t -> intval top_heap_words : t -> intval compactions : t -> intval fragments : t -> intval largest_free : t -> intval free_blocks : t -> intval free_words : t -> intval live_blocks : t -> intval live_words : t -> intval heap_chunks : t -> intval heap_words : t -> intval major_collections : t -> intval minor_collections : t -> intval major_words : t -> floatval promoted_words : t -> floatval minor_words : t -> floatmodule Fields:sig..end
val t_of_sexp : Sexplib.Sexp.t -> tval sexp_of_t : t -> Sexplib.Sexp.tval bin_t : t Bin_prot.Type_class.tval bin_read_t : t Bin_prot.Read_ml.readerval bin_read_t_ : t Bin_prot.Unsafe_read_c.readerval bin_read_t__ : (int -> t) Bin_prot.Unsafe_read_c.readerval bin_reader_t : t Bin_prot.Type_class.readerval bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write_ml.writerval bin_write_t_ : t Bin_prot.Unsafe_write_c.writerval bin_writer_t : t Bin_prot.Type_class.writer