Module Procfs.Process.Statm

module Statm: sig .. end

type t = {
   size :Core.Int63.t; (*total program size*)
   resident :Core.Int63.t; (*resident set size*)
   share :Core.Int63.t; (*shared pages*)
   text :Core.Int63.t; (*text (code)*)
   lib :Core.Int63.t; (*library*)
   data :Core.Int63.t; (*data/stack*)
   dt :Core.Int63.t; (*dirty pages (unused)*)
}
val dt : t -> Core.Int63.t
val data : t -> Core.Int63.t
val lib : t -> Core.Int63.t
val text : t -> Core.Int63.t
val share : t -> Core.Int63.t
val resident : t -> Core.Int63.t
val size : t -> Core.Int63.t
module Fields: sig .. end
val of_string : string -> t
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t