aboutsummaryrefslogtreecommitdiff
path: root/lib/spawn.mli
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-11-21 15:38:39 +0100
committerEmilio Jesus Gallego Arias2019-11-21 15:38:39 +0100
commitd016f69818b30b75d186fb14f440b93b0518fc66 (patch)
tree32cd948273f79a2c01ad27b4ed0244ea60d7e2f9 /lib/spawn.mli
parentb680b06b31c27751a7d551d95839aea38f7fbea1 (diff)
[coq] Untabify the whole ML codebase.
We also remove trailing whitespace. Script used: ```bash for i in `find . -name '*.ml' -or -name '*.mli' -or -name '*.mlg'`; do expand -i "$i" | sponge "$i"; sed -e's/[[:space:]]*$//' -i.bak "$i"; done ```
Diffstat (limited to 'lib/spawn.mli')
-rw-r--r--lib/spawn.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spawn.mli b/lib/spawn.mli
index 5321436ab0..03613fc4ec 100644
--- a/lib/spawn.mli
+++ b/lib/spawn.mli
@@ -27,7 +27,7 @@ module type Control = sig
val kill : handle -> unit
val wait : handle -> Unix.process_status
val unixpid : handle -> int
-
+
(* What is used in debug messages *)
val uid : handle -> string
@@ -54,7 +54,7 @@ module Async(ML : MainLoopModel) : sig
(* If the returned value is false the callback is never called again and
* the process is killed *)
type callback = ML.condition list -> read_all:(unit -> string) -> bool
-
+
val spawn :
?prefer_sock:bool -> ?env:string array -> string -> string array ->
callback -> process * out_channel
@@ -65,7 +65,7 @@ end
(* spawn a process and read its output synchronously *)
module Sync () : sig
type process
-
+
val spawn :
?prefer_sock:bool -> ?env:string array -> string -> string array ->
process * in_channel * out_channel