Module Procfs.Process.Limits.Rlimit

module Rlimit: sig .. end

type value = [ `limited of Procfs.bigint | `unlimited ] 
type t = {
   soft : value;
   hard : value;
}
val hard : t -> value
val soft : t -> value
module Fields: sig .. end
val value_of_sexp : Sexplib.Sexp.t -> value
val __value_of_sexp__ : Sexplib.Sexp.t -> value
val sexp_of_value : value -> Sexplib.Sexp.t
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t