package process

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Exit of int
  2. | Kill of Signal.t
  3. | Stop of Signal.t
type error = {
  1. cwd : string;
  2. command : string;
  3. args : string array;
  4. status : t;
}
exception Error of error
val of_unix : Unix.process_status -> t
val to_string : t -> string
val error_to_string : error -> string