package mem_usage

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. total_virtual_memory : int;
  2. total_physical_memory : int;
  3. total_used_virtual_memory : int;
  4. total_used_physical_memory : int;
  5. process_virtual_memory : int;
  6. process_physical_memory : int;
}
val info : unit -> t
val prettify_bytes : ?float_printer:(float -> string) -> ?signed:bool -> ?bits:bool -> ?binary:bool -> int -> string