package moonpool

  1. Overview
  2. Docs

Source file main.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
exception Oh_no of Exn_bt.t

let main (f : Runner.t -> 'a) : 'a =
  let st = Fifo_pool.Private_.create_state ~threads:[| Thread.self () |] () in
  let runner = Fifo_pool.Private_.runner_of_state st in
  try
    let fiber = Fiber.spawn_top ~on:runner (fun () -> f runner) in
    Fiber.on_result fiber (fun _ -> Runner.shutdown_without_waiting runner);
    (* run the main thread *)
    Fifo_pool.Private_.run_thread st runner ~on_exn:(fun e bt ->
        raise (Oh_no (Exn_bt.make e bt)));
    match Fiber.peek fiber with
    | Some (Ok x) -> x
    | Some (Error ebt) -> Exn_bt.raise ebt
    | None -> assert false
  with Oh_no ebt -> Exn_bt.raise ebt
OCaml

Innovation. Community. Security.