[zeromq-dev] On windows uses select() ?

2012-02-09 Thread niXman
Hi, I read the ØMQ sources and could not find IOCP implementation for Windows. Is it true that on Windows is used select() ? niXman. ___ zeromq-dev mailing list zeromq-dev@lists.zeromq.org http://lists.zeromq.org/mailman/listinfo/zeromq-dev

Re: [zeromq-dev] On windows uses select() ?

2012-02-09 Thread Joshua Foster
Correct. IOCP has been looked at a number of times, but no impl yet. 0MQ just uses select() on Windows. It is why there is no IPC on the Windows version. Joshua On Feb 9, 2012, at 10:28 AM, niXman wrote: Hi, I read the ØMQ sources and could not find IOCP implementation for Windows. Is it

Re: [zeromq-dev] On windows uses select() ?

2012-02-09 Thread niXman
Hm... High-performance server for Windows will not ... 2012/2/9 Joshua Foster jhaw...@gmail.com: Correct. IOCP has been looked at a number of times, but no impl yet. 0MQ just uses select() on Windows. It is why there is no IPC on the Windows version. Joshua On Feb 9, 2012, at 10:28 AM,

Re: [zeromq-dev] On windows uses select() ?

2012-02-09 Thread Brad LaFountain
I looked into this also. I got it sort of working. Basically the trick is that IOCP doesn't just let you probe if there is data/connection or anything waiting. So for each connection you need to have something queued at all times. I just went looking for the code and it appears i lost it with a HD

Re: [zeromq-dev] On windows uses select() ?

2012-02-09 Thread john skaller
On 10/02/2012, at 11:12 AM, Brad LaFountain wrote: I looked into this also. I got it sort of working. Basically the trick is that IOCP doesn't just let you probe if there is data/connection or anything waiting. So for each connection you need to have something queued at all times. I just