mirror of
https://github.com/c-cube/moonpool.git
synced 2025-12-06 03:05:30 -05:00
details
This commit is contained in:
parent
2711e71d18
commit
d9eee6eb50
3 changed files with 5 additions and 0 deletions
3
Makefile
3
Makefile
|
|
@ -9,6 +9,9 @@ clean:
|
||||||
test:
|
test:
|
||||||
@dune runtest $(DUNE_OPTS)
|
@dune runtest $(DUNE_OPTS)
|
||||||
|
|
||||||
|
doc:
|
||||||
|
@dune build $(DUNE_OPTS) @doc
|
||||||
|
|
||||||
WATCH?=@all
|
WATCH?=@all
|
||||||
watch:
|
watch:
|
||||||
dune build $(DUNE_OPTS) -w $(WATCH)
|
dune build $(DUNE_OPTS) -w $(WATCH)
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
(ocaml (>= 4.08))
|
(ocaml (>= 4.08))
|
||||||
dune
|
dune
|
||||||
either
|
either
|
||||||
|
(odoc :with-doc)
|
||||||
(mdx
|
(mdx
|
||||||
(and
|
(and
|
||||||
(>= 1.9.0)
|
(>= 1.9.0)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
(** Thread pool *)
|
(** Thread pool *)
|
||||||
|
|
||||||
type t
|
type t
|
||||||
|
(** A pool of threads. *)
|
||||||
|
|
||||||
type thread_loop_wrapper =
|
type thread_loop_wrapper =
|
||||||
thread:Thread.t -> pool:t -> (unit -> unit) -> unit -> unit
|
thread:Thread.t -> pool:t -> (unit -> unit) -> unit -> unit
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue