Prune devel/py-EnthoughtBase
[dports.git] / devel / hs-threads / pkg-descr
1 This package provides functions to fork threads and wait for their result,
2 whether it's an exception or a normal value. Besides waiting for the
3 termination of a single thread this packages also provides functions to
4 wait for a group of threads to terminate. This package is similar to the
5 "threadmanager", "async" and "spawn" packages. The advantages of this
6 package are:
7
8   * Simpler API.
9   * More efficient in both space and time.
10   * No space-leak when forking a large number of threads.
11   * Correct handling of asynchronous exceptions.
12   * GHC specific functionality like `forkOn` and `forkIOWithUnmask`.
13
14 WWW: https://github.com/basvandijk/threads