aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/spawn.mli
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2018-06-15 13:54:26 +0200
committerGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2018-06-15 17:37:01 +0200
commitacc142fcee47cd8202dd1ad67e39fd569b09bbd7 (patch)
treea692900b2e76798618fd5ca04b44dc2c8131e980 /lib/spawn.mli
parent31e13998542941040343cb81787a1d7c865d5b65 (diff)
[spawn] don't create a control socket on Unix (Fix #7713)
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 c7a56349c..944aa27a7 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