aboutsummaryrefslogtreecommitdiff
path: root/lib/spawn.mli
diff options
context:
space:
mode:
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 a131715e9d..fd2b92ae3e 100644
--- a/lib/spawn.mli
+++ b/lib/spawn.mli
@@ -34,8 +34,6 @@ module type Control = sig
end
(* Abstraction to work with both threads and main loop models *)
-module type Empty = sig end
-
module type MainLoopModel = sig
type async_chan
type condition
@@ -64,7 +62,7 @@ module Async(ML : MainLoopModel) : sig
end
(* spawn a process and read its output synchronously *)
-module Sync(T : Empty) : sig
+module Sync () : sig
type process
val spawn :