Module Sys_resource.Resource

type t =
  1. | CORE
  2. | CPU
  3. | DATA
  4. | FSIZE
  5. | NOFILE
  6. | STACK
  7. | AS
type defns = {
  1. core : int;
  2. cpu : int;
  3. data : int;
  4. fsize : int;
  5. nofile : int;
  6. stack : int;
  7. as_ : int;
}
module Host : sig ... end
val to_string : t -> string
val to_code : host:Host.t -> t -> int
module Limit : sig ... end