Re: Library for concurrent threads running

2002-12-18 Thread Kevin Hammond
I am also not quite sure of your motivation! The current version of GpH is (or can be with very little difficulty) implemented using library calls. There is really no language extension per se, rather there are calls to tightly-coupled C code, plus a set of high level libraries to provide struct

Re: Library for concurrent threads running

2002-12-16 Thread Christian Sievers
Dusan Kolar asked: >My question/wish is maybe naive, but anyway: > Is there a library (not a language extension, like > Concurrent Haskell, Glasgow Parallel Haskell, ...) enabling > to run two functions in parallel, possibly in cascade? I think the best you can get without language extensions

Re: Library for concurrent threads running

2002-12-16 Thread Dean Herington
Why doesn't Concurrent Haskell suit your needs? Dean Dusan Kolar wrote: > Hello, > >My question/wish is maybe naive, but anyway: > Is there a library (not a language extension, like > Concurrent Haskell, Glasgow Parallel Haskell, ...) enabling > to run two functions in parallel, possibly in

Library for concurrent threads running

2002-12-16 Thread Dusan Kolar
Hello, My question/wish is maybe naive, but anyway: Is there a library (not a language extension, like Concurrent Haskell, Glasgow Parallel Haskell, ...) enabling to run two functions in parallel, possibly in cascade? Something like: > testAll (threadStart f1 (threadStart f2 f3)) > > where th