package ocp-build

  1. Overview
  2. Docs
val wait : unit -> int * MinUnix.process_status
val fork : unit -> int
val system : string -> MinUnix.process_status
val getppid : unit -> int
val nice : int -> int
val isatty : MinUnix.file_descr -> bool
val truncate : string -> int -> unit
val ftruncate : MinUnix.file_descr -> int -> unit
val create_process : string -> string array -> MinUnix.file_descr -> MinUnix.file_descr -> MinUnix.file_descr -> int
val create_process_env : string -> string array -> string array -> MinUnix.file_descr -> MinUnix.file_descr -> MinUnix.file_descr -> int
val open_process_in : string -> in_channel
val open_process_out : string -> out_channel
val open_process : string -> in_channel * out_channel
val open_process_full : string -> string array -> in_channel * out_channel * in_channel
val close_process_in : in_channel -> MinUnix.process_status
val close_process_out : out_channel -> MinUnix.process_status
val close_process : (in_channel * out_channel) -> MinUnix.process_status
val close_process_full : (in_channel * out_channel * in_channel) -> MinUnix.process_status
val chroot : string -> unit
type dir_handle
val opendir : string -> dir_handle
val readdir : dir_handle -> string
val rewinddir : dir_handle -> unit
val closedir : dir_handle -> unit
val mkfifo : string -> MinUnix.file_perm -> unit
val fchmod : MinUnix.file_descr -> MinUnix.file_perm -> unit
val chown : string -> int -> int -> unit
val fchown : MinUnix.file_descr -> int -> int -> unit
val umask : int -> int