This commit is contained in:
Simon Cruanes 2023-06-01 22:34:14 -04:00
parent 2711e71d18
commit d9eee6eb50
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
3 changed files with 5 additions and 0 deletions

View file

@ -9,6 +9,9 @@ clean:
test:
@dune runtest $(DUNE_OPTS)
doc:
@dune build $(DUNE_OPTS) @doc
WATCH?=@all
watch:
dune build $(DUNE_OPTS) -w $(WATCH)

View file

@ -24,6 +24,7 @@
(ocaml (>= 4.08))
dune
either
(odoc :with-doc)
(mdx
(and
(>= 1.9.0)

View file

@ -1,6 +1,7 @@
(** Thread pool *)
type t
(** A pool of threads. *)
type thread_loop_wrapper =
thread:Thread.t -> pool:t -> (unit -> unit) -> unit -> unit