module Statm:sig..end
type t = {
   | 
size : | 
(* | total program size | *) | 
   | 
resident : | 
(* | resident set size | *) | 
   | 
 : | 
(* | shared pages | *) | 
   | 
text : | 
(* | text (code) | *) | 
   | 
lib : | 
(* | library | *) | 
   | 
data : | 
(* | data/stack | *) | 
   | 
dt : | 
(* | dirty pages (unused) | *) | 
val dt : t -> Procfs.bigintval data : t -> Procfs.bigintval lib : t -> Procfs.bigintval text : t -> Procfs.bigint : t -> Procfs.bigintval resident : t -> Procfs.bigintval size : t -> Procfs.bigintmodule Fields:sig..end
val t_of_sexp : Sexplib.Sexp.t -> tval sexp_of_t : t -> Sexplib.Sexp.t