before-ghci branch still broken

2000-10-10 Thread Jeffrey R. Lewis
... but the errors are getting more entertaining... ;-) ../../../ghc/driver/ghc-inplace -recomp -cpp -fglasgow-exts-no-lang -fvia-C -Rghc-timing -O -package-name std -static -split-objs -H12m -c PrelBase.lhs -o PrelBase.o -osuf o PrelBase.lhs:203: `a' is not in scope When checking kind

RE: Signal handling still buggy

2000-10-10 Thread Simon Marlow
> I think I found the most simple version to reproduce this bug. > > > module Main where > > import Posix > > import IO > > main = do > > _ <- installHandler sigUSR1 (Catch (return ())) Nothing > -- will fail > > -- _ <- installHandler sigUSR1 Ignore Nothing -- will work > > loop > > loop

Re: Signal handling still buggy

2000-10-10 Thread Volker Stolz
On Mon, Oct 09, 2000 at 05:40:29AM -0700, Simon Marlow wrote: > Ok. Is it possible to cut down the example to maybe 2 concurrent threads, > so we could try to fix the problem here? There aren't any obvious bugs in > the signal handling code (at least, not obvious to me :). I think I found the m