RE: Native Threads in the RTS

2002-12-02 Thread Simon Peyton-Jones
| 2. Calling from foreign code into Haskell to a bound foreign import will | require some special handling to ensure that a subsequent call out to | foreign code will use the same native thread. Why couldn't this special | handling select the same Haskell thread instead of creating a new one?

:info in ghci

2002-12-02 Thread Hal Daume III
Any chance :info could also report fixity information, especially for symbolic identifiers? -- Hal Daume III Computer science is no more about computers| [EMAIL PROTECTED] than astronomy is about telescopes. -Dijkstra | www.isi.edu/~hdaume ___

RE: :info in ghci

2002-12-02 Thread Simon Peyton-Jones
It already does... but a bug meant it wasn't always reporting it. Now fixed in the head. SImon | -Original Message- | From: Hal Daume III [mailto:[EMAIL PROTECTED]] | Sent: 02 December 2002 16:50 | To: GHC Users Mailing List | Subject: :info in ghci | | Any chance :info could also

MacOS X (10.2.2) standalone ghc app

2002-12-02 Thread Reto Kramer
I'm trying to deliver a self contained app that I developed with ghc 5.04.1 on Mac OS X (10.2.2). It all works well if ghc is installed on the machine, but on a user-machine w/o ghc, the following file is needed: HaskellSupport.framework/Versions/A/HaskellSupport The error message is: idc_Darwin

Re: Native Threads in the RTS

2002-12-02 Thread Wolfgang Thaller
I've postponed writing up a new proposal again... But I'm going to sum up some requirements that I would like to see fulfilled - to make it clearer to others why I'm proposing such strange things... *) It should be possible for Haskell code to arrange that a sequence of calls to a given

Re: MacOS X (10.2.2) standalone ghc app

2002-12-02 Thread Wolfgang Thaller
I'm trying to deliver a self contained app that I developed with ghc 5.04.1 on Mac OS X (10.2.2). It all works well if ghc is installed on the machine, but on a user-machine w/o ghc, the following file is needed: HaskellSupport.framework/Versions/A/HaskellSupport Could someone explain why

'accept' does not seem to be thread friendly ..

2002-12-02 Thread Ahn Ki-yung
John Meacham wrote: that is what Concurrent is for, Haskell threads, (well GHC threads) are lightweight and can be used for selectlike purposes without too much overhead. I use them quite effectivly for complex networked applications.. see

Re: MacOS X (10.2.2) standalone ghc app

2002-12-02 Thread Andre Pang
On Mon, Dec 02, 2002 at 11:47:41PM +0100, Wolfgang Thaller wrote: I'm trying to deliver a self contained app that I developed with ghc 5.04.1 on Mac OS X (10.2.2). It all works well if ghc is installed on the machine, but on a user-machine w/o ghc, the following file is needed: