ghc/rts/parallel/HLComms.c

Albert Lai trebla at vex.net
Fri Feb 16 21:48:22 EST 2001


Albert Lai <trebla at vex.net> writes:

> I try to build ghc 4.08.2 with parallelism turned on, i.e., GhcLibsWays=mp.
> At ghc/rts/parallel/HLComms.c line 550:
> 
>   GarbageCollect(GetRoots);
> 
> it barfs because the new GarbageCollect() function expects a boolean
> parameter after the first parameter.  (See ghc/rts/Storage.h for example.)

For now, I will just steal the code from gum 4.06 and replace this
(and all other occurences in HLComms.c) by

  GarbageCollect(GetRoots, rtsFalse);

and hope it works.




More information about the Glasgow-haskell-bugs mailing list