aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2014-12-25 15:51:07 +0100
committerPierre-Marie Pédrot2014-12-25 16:05:27 +0100
commit0e326def6194606d0f1e21daeb45f32e1a061c8f (patch)
treeb6343d4b7601a7503c1f90e265cd852160304606 /lib
parent90ed6636dea41486ddf2cc0daead83f9f0788163 (diff)
Inlining Spawn.kill_if in the one place were it was actually used, thus
removing the need of thread creation in the interface.
Diffstat (limited to 'lib')
-rw-r--r--lib/spawn.ml31
-rw-r--r--lib/spawn.mli13
2 files changed, 8 insertions, 36 deletions
diff --git a/lib/spawn.ml b/lib/spawn.ml
index 802867e127..a8791ecb30 100644
--- a/lib/spawn.ml
+++ b/lib/spawn.ml
@@ -24,14 +24,11 @@ module type Control = sig
val wait : handle -> Unix.process_status
val unixpid : handle -> int
val uid : handle -> string
+ val is_alive : handle -> bool
- val kill_if : handle -> sec:int -> (unit -> bool) -> unit
end
-module type Timer = sig
-
- val add_timeout : sec:int -> (unit -> bool) -> unit
-end
+module type Empty = sig end
module type MainLoopModel = sig
type async_chan
@@ -43,8 +40,6 @@ module type MainLoopModel = sig
val read_all : async_chan -> string
val async_chan_of_file : Unix.file_descr -> async_chan
val async_chan_of_socket : Unix.file_descr -> async_chan
-
- include Timer
end
(* Common code *)
@@ -164,6 +159,7 @@ type process = {
type callback = ML.condition list -> read_all:(unit -> string) -> bool
type handle = process
+let is_alive p = p.alive
let uid { pid; } = string_of_int pid
let unixpid { pid; } = pid
@@ -209,15 +205,6 @@ let stats { oob_req; oob_resp; alive } =
flush oob_req;
input_value oob_resp
-let kill_if p ~sec test =
- ML.add_timeout ~sec (fun () ->
- if not p.alive then false
- else if test () then begin
- prerr_endline ("death condition for " ^ uid p ^ " is true");
- kill p;
- false
- end else true)
-
let rec wait p =
try snd (Unix.waitpid [] p.pid)
with
@@ -226,7 +213,7 @@ let rec wait p =
end
-module Sync(T : Timer) = struct
+module Sync(T : Empty) = struct
type process = {
cin : in_channel;
@@ -244,6 +231,7 @@ let spawn ?(prefer_sock=prefer_sock) ?(env=Unix.environment ()) prog args =
spawn_with_control prefer_sock env prog args in
{ cin; cout; pid; oob_resp; oob_req; alive = true }, cin, cout
+let is_alive p = p.alive
let uid { pid; } = string_of_int pid
let unixpid { pid = pid; } = pid
@@ -263,15 +251,6 @@ let stats { oob_req; oob_resp; alive } =
flush oob_req;
let RespStats g = input_value oob_resp in g
-let kill_if p ~sec test =
- T.add_timeout ~sec (fun () ->
- if not p.alive then false
- else if test () then begin
- prerr_endline ("death condition for " ^ uid p ^ " is true");
- kill p;
- false
- end else true)
-
let wait { pid = unixpid } =
try snd (Unix.waitpid [] unixpid)
with Unix.Unix_error _ -> Unix.WEXITED 0o400
diff --git a/lib/spawn.mli b/lib/spawn.mli
index 1554e0a1ec..b4f615c892 100644
--- a/lib/spawn.mli
+++ b/lib/spawn.mli
@@ -30,16 +30,11 @@ module type Control = sig
(* What is used in debug messages *)
val uid : handle -> string
- (* Installs a callback, called every [sec] seconds. If the returned value
- * is true the process is killed *)
- val kill_if : handle -> sec:int -> (unit -> bool) -> unit
+ val is_alive : handle -> bool
end
(* Abstraction to work with both threads and main loop models *)
-module type Timer = sig
-
- val add_timeout : sec:int -> (unit -> bool) -> unit
-end
+module type Empty = sig end
module type MainLoopModel = sig
type async_chan
@@ -51,8 +46,6 @@ module type MainLoopModel = sig
val read_all : async_chan -> string
val async_chan_of_file : Unix.file_descr -> async_chan
val async_chan_of_socket : Unix.file_descr -> async_chan
-
- include Timer
end
(* spawn a process and read its output asynchronously *)
@@ -71,7 +64,7 @@ module Async(ML : MainLoopModel) : sig
end
(* spawn a process and read its output synchronously *)
-module Sync(T : Timer) : sig
+module Sync(T : Empty) : sig
type process
val spawn :