Re: Windows overlapped IO

2007-11-22 Thread Felix Martini
Hi all, Overlapped IO support for files and sockets is now in place in my test version of ghc-head. File functions use the win32 api and large files and Unicode filenames are supported (i'm not sure if ghc currently supports that for Windows). I've addded a new type Hdl which is an alias for FD o

Re: Windows overlapped IO

2007-11-16 Thread Simon Marlow
Felix Martini wrote: I have made a prototype for overlapped IO that works with a modified version of Takano Akio's SSC library. Great! (I don't know what Takano Akio's SSC library is though) I have been trying to add it to GHC's IO implementation but there are some issues. Instead of file de

Windows overlapped IO

2007-11-15 Thread Felix Martini
I have made a prototype for overlapped IO that works with a modified version of Takano Akio's SSC library. I have been trying to add it to GHC's IO implementation but there are some issues. Instead of file descriptors windows handles are needed. The GHC handle implementation is currently based arou