Module Unix.Process_info

module Process_info: sig .. end

type t = {
   pid :Pid.t;
   stdin :Unix.File_descr.t;
   stdout :Unix.File_descr.t;
   stderr :Unix.File_descr.t;
}
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t