For all interested in Haskell GUIs, there is now a first preview release of
qtHaskell - a set of Haskell bindings for Trolltech's Qt available at
http://qthaskell.sourceforge.net
Any feedback, comments etc welcome
Merry Christmas
David Harley
P.S. if anyone can get the system to build and work
--- Juanma Barranquero <[EMAIL PROTECTED]> wrote:
...
>
> Though, if you're using Emacs on Windows and you do
> want it to use a
> different HOME you can set
> HOME=C:\this\is\my\emacs\home as a new
> string value in the HKLM\Software\Gnu\Emacs key of
> the registry.
The registry ... I hadn't t
Thanks, Simon. If I understand the mechanism you're describing, it discards
readers of an empty MVar when there are no other references to the MVar
*because* the MVar can never get written. And if there are other readers
but no writers, then I'm guessing GC wouldn't know that, and none of the
rea
GHC already garbage-collects threads that are blocked on an MVar that is
otherwise inaccessible (and hence cannot be updated). More precisely, GHC
sends the thread an asynchronous exception (ThreadBlocked or something), so
that it has a chance to clean up.
So perhaps the GC you want is already