package core_extended

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type index_t =
  1. | All
  2. | Number of int
include sig ... end
val index_t_of_sexp : Sexplib.Sexp.t -> index_t
val sexp_of_index_t : index_t -> Sexplib.Sexp.t
type cpu_t = {
  1. user : bigint;
  2. nice : bigint;
  3. sys : bigint;
  4. idle : bigint;
  5. iowait : bigint option;
  6. irq : bigint option;
  7. softirq : bigint option;
  8. steal : bigint option;
  9. guest : bigint option;
}
include sig ... end
val guest : cpu_t -> bigint option
val steal : cpu_t -> bigint option
val softirq : cpu_t -> bigint option
val irq : cpu_t -> bigint option
val iowait : cpu_t -> bigint option
val idle : cpu_t -> bigint
val sys : cpu_t -> bigint
val nice : cpu_t -> bigint
val user : cpu_t -> bigint
module Fields_of_cpu_t : sig ... end
val cpu_t_of_sexp : Sexplib.Sexp.t -> cpu_t
val sexp_of_cpu_t : cpu_t -> Sexplib.Sexp.t
type t = index_t * cpu_t
val load_exn : unit -> t list
OCaml

Innovation. Community. Security.