This commit is contained in:
c-cube 2024-06-26 15:36:08 +00:00
parent 390c905e4e
commit 8c503674f6
2 changed files with 6 additions and 0 deletions

View file

@ -23,6 +23,9 @@ In addition, some concurrency and parallelism primitives are provided:
provides the fork-join parallelism primitives
to use within tasks running in the pool.
On OCaml 4.xx, there is only one domain; all threads run on it, but the
pool abstraction is still useful to provide preemptive concurrency.
## Usage
The user can create several thread pools (implementing the interface `Runner.t`).

View file

@ -23,6 +23,9 @@ In addition, some concurrency and parallelism primitives are provided:
provides the fork-join parallelism primitives
to use within tasks running in the pool.
On OCaml 4.xx, there is only one domain; all threads run on it, but the
pool abstraction is still useful to provide preemptive concurrency.
## Usage
The user can create several thread pools (implementing the interface `Runner.t`).