aboutsummaryrefslogtreecommitdiff
path: root/lib/spawn.mli
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-06-17 12:51:59 +0200
committerEmilio Jesus Gallego Arias2018-06-17 12:51:59 +0200
commit955e5a63cd2405632bb535b81bbad2fbe74d0394 (patch)
tree16006b5eabd40eeef4127e393bc0cf99a40561fd /lib/spawn.mli
parent9f8345d6bddfe2965ef9dc0155092348d5166f51 (diff)
parentacc142fcee47cd8202dd1ad67e39fd569b09bbd7 (diff)
Merge PR #7828: [Spawn] no control sock on unix
Diffstat (limited to 'lib/spawn.mli')
-rw-r--r--lib/spawn.mli4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/spawn.mli b/lib/spawn.mli
index c7a56349c6..944aa27a7f 100644
--- a/lib/spawn.mli
+++ b/lib/spawn.mli
@@ -25,7 +25,6 @@ module type Control = sig
type handle
val kill : handle -> unit
- val stats : handle -> Gc.stat
val wait : handle -> Unix.process_status
val unixpid : handle -> int
@@ -76,6 +75,5 @@ end
(* This is exported to separate the Spawned module, that for simplicity assumes
* Threads so it is in a separate file *)
-type req = ReqDie | ReqStats | Hello of int * int
+type req = ReqDie | Hello of int * int
val proto_version : int
-type resp = RespStats of Gc.stat