Module Unix.Exit

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

type error = [ `Exit_non_zero of int ] 
type t = (unit, error) Core_kernel.Std.Result.t 
val to_string_hum : t -> string
val code : t -> int
val of_code : int -> t
val or_error : t -> unit Core_kernel.Std.Or_error.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