mirage-solo5
Solo5 core platform libraries for MirageOS
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type stat = {
}
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.
trim ()
release free memory from the heap (may update the value returned by quick_stat
)