RE: Asynchronous exceptions and "resume"

2003-03-26 Thread Simon Marlow
> Hi all, is there a way, or is it planned to, or has anyone published > articles on... resuming from asynchronous exceptions? > > I mean: it would be useful there was a > > suspend :: ThreadID -> IO () > > where the result is the remaining computation of the other > thread, wich > one could

Re: Asynchronous exceptions and "resume"

2003-03-26 Thread Nick Name
On Wed, 26 Mar 2003 13:21:16 +0100 Nick Name <[EMAIL PROTECTED]> wrote: > suspend :: ThreadID -> IO () ^ Oh, yes, I meant suspend :: ThreadID -> IO (IO ()) V. ___ Haskell-Cafe mailing list [EMAIL PROTECTED] http://www.has

Asynchronous exceptions and "resume"

2003-03-26 Thread Nick Name
Hi all, is there a way, or is it planned to, or has anyone published articles on... resuming from asynchronous exceptions? I mean: it would be useful there was a suspend :: ThreadID -> IO () where the result is the remaining computation of the other thread, wich one could forkIO again, or simpl