package mirage-solo5

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Memory management operations.

type stat = {
  1. heap_words : int;
    (*

    total number of words allocatable on the heap.

    *)
  2. live_words : int;
    (*

    number of live (i.e. allocated) words on the heap.

    *)
  3. stack_words : int;
    (*

    number of words in use by the program stack. This includes any space reserved by a stack guard.

    *)
  4. free_words : int;
    (*

    number of free (i.e. allocatable) words on the heap.

    *)
}

Memory allocation statistics. Units are the system word size, as used by the OCaml stdlib Gc module.

val stat : unit -> stat

stat () returns memory allocation statistics. This uses mallinfo and walks over the entire heap. This call is slower than quick_stat.

val quick_stat : unit -> stat

quick_stat () returns memory allocation statistics. This call uses a precomputed value. This call is cheaper than stat, but the returned values may not be completely accurate.

val trim : unit -> unit

trim () release free memory from the heap (may update the value returned by quick_stat)