Imandrakit_io_setrlimittype resource = | RLIMIT_COREmaximum size of a core file, in bytes
*)| RLIMIT_CPUmaximum amount of CPU time, in seconds, used by a process
*)| RLIMIT_DATAmaximum size of a data segment of the process, in bytes
*)| RLIMIT_FSIZEmaximum size of a file, in bytes, that may be created by a process
*)| RLIMIT_NOFILEa number one greater than the maximum value that the system may assign to a newly-created descriptor
*)| RLIMIT_STACKmaximum size of the initial thread's stack, in bytes. This might clash with OCaml's stack management.
*)| RLIMIT_ASmaximum size of total available memory of the process, in bytes
*)module Raw : sig ... endval set : resource -> nativeint -> nativeint -> boolset resource limit returns true if setting the limit succeeded
val pp_limits :
Ppx_deriving_runtime.Format.formatter ->
limits ->
Ppx_deriving_runtime.unitval show_limits : limits -> Ppx_deriving_runtime.stringval set_hard_exn : resource -> nativeint option -> unitval get : resource -> (limits, nativeint) Stdlib.Result.t