type t
A sequence of tasks that can be executed in parallel, with a continuation to be executed at the end
Create tasks with a list of closures to be executed in parallel, and an optional continuation to be executed afterwards
val fork_protect : f:('a ‑> 'b) ‑> 'a ‑> 'b
does the bookkeeping necessary to safely execute an infer function f
after a call to fork(2)
module Runner : sig ... end