Module Procfs.Kstat

module Kstat: sig .. end

type index_t = 
| All
| Number of int
type cpu_t = {
   user :Core.Int63.t;
   nice :Core.Int63.t;
   sys :Core.Int63.t;
   idle :Core.Int63.t;
   iowait :Core.Int63.t option;
   irq :Core.Int63.t option;
   softirq :Core.Int63.t option;
   steal :Core.Int63.t option;
   guest :Core.Int63.t option;
}
val guest : cpu_t -> Core.Int63.t option
val steal : cpu_t -> Core.Int63.t option
val softirq : cpu_t -> Core.Int63.t option
val irq : cpu_t -> Core.Int63.t option
val iowait : cpu_t -> Core.Int63.t option
val idle : cpu_t -> Core.Int63.t
val sys : cpu_t -> Core.Int63.t
val nice : cpu_t -> Core.Int63.t
val user : cpu_t -> Core.Int63.t
module Fields_of_cpu_t: sig .. end
type t = index_t * cpu_t 
val load_exn : unit -> t list
val index_t_of_sexp : Sexplib.Sexp.t -> index_t
val sexp_of_index_t : index_t -> Sexplib.Sexp.t
val cpu_t_of_sexp : Sexplib.Sexp.t -> cpu_t
val sexp_of_cpu_t : cpu_t -> Sexplib.Sexp.t