Module Core_unix.Process_info

module Process_info: sig .. end

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