• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/Control/Concurrent/STM/H30-May-2015-1,537690

AUTHORSH A D30-May-2015585 1410

CHANGELOGH A D30-May-20151.6 KiB4037

LICENSEH A D30-May-20151.5 KiB3628

READMEH A D30-May-2015756 2518

Setup.hsH A D30-May-20151.2 KiB2813

stm-chans.cabalH A D03-May-20222 KiB6050

README

1stm-chans
2=========
3
4In general, this is a simple package and should be easy to install.
5It does require GHC however, because it relies on the
6Control.Concurrent.STM.TChan type which (for some unknown reason)
7is GHC-only. With the cabal-install program you can just do:
8
9    $> cabal install stm-chans
10
11Or if you don't have cabal-install, then you can use the Cabal
12library:
13
14    $> runhaskell Setup.hs configure
15    $> runhaskell Setup.hs build
16    $> runhaskell Setup.hs test
17    $> runhaskell Setup.hs haddock --hyperlink-source
18    $> runhaskell Setup.hs copy
19    $> runhaskell Setup.hs register
20
21The test step is optional and currently does nothing. The Haddock
22step is also optional.
23
24----------------------------------------------------------- fin.
25