Thread_intf.ml
domain-local-await
1 2 3 4 5 6 7 8 (** Signature for a minimal subset of the [Stdlib.Thread] module needed by domain local await. *) module type Thread = sig type t val self : unit -> t val id : t -> int end
1 2 3 4 5 6 7 8
(** Signature for a minimal subset of the [Stdlib.Thread] module needed by domain local await. *) module type Thread = sig type t val self : unit -> t val id : t -> int end