Class Lwt_process.process_none
method state : stateReturn the state of the process
method terminate : unitTerminates the process. It is equivalent to
kill Sys.sigkillon Unix but also works on Windows (unlikekill).
method status : Unix.process_status Lwt.tThreads which wait for the sub-process to exit then returns its exit status
method rusage : Lwt_unix.resource_usage Lwt.tThreads which wait for the sub-process to exit then returns its resource usages
method close : Unix.process_status Lwt.tCloses the process and returns its exit status. This closes all channels used to communicate with the process