Module Unix.Exit

module Exit: sig .. end
The termination status of a process.

type error = [ `Exit_non_zero of int ] 
type t = (unit, error) Result.t 
val to_string_hum : t -> string
val code : t -> int
val of_code : int -> t
val error_of_sexp : Sexplib.Sexp.t -> error
val error_of_sexp__ : Sexplib.Sexp.t -> error
val sexp_of_error : error -> Sexplib.Sexp.t
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t