Re: [zeromq-dev] External Event Loop

2010-12-18 Thread Martin Sustrik
Hi Praveem, I even tried with Edge-Triggered semantics. Still nothing happens. I have written test code to reproduce the problem. Kindly take a look. The FileService class in the test code is used to watch descriptors using libevent. Its tested to be working fine separately. I am also

Re: [zeromq-dev] Q; running multiple REP listeners on an IPC socket, only the last one connected gets any messages

2010-12-18 Thread Martin Sustrik
Dhammika, 1) Using one zmq context, I bind four separate zmq sockets (in java) to the same ipc port; e.g. ipc://tmp/test Hm, you should be able to bind at most one socket to a particular endpoint. Are you sure all the four binds succeed? All four binds will succeed, as we unlink() before

[zeromq-dev] [PATCH] Fix passing through CFLAGS/CPPFLAGS/CXXFLAGS when using --enable-debug

2010-12-18 Thread Mikko Koppanen
Hello, attached is a patch to fix passing through CFLAGS/CPPFLAGS/CXXFLAGS when using --enable-debug flag for configure. -- Mikko Koppanen 0001-Fix-passing-through-CFLAGS-CPPFLAGS-CXXFLAGS-when-us.patch Description: Binary data ___ zeromq-dev

Re: [zeromq-dev] Q; running multiple REP listeners on an IPC socket, only the last one connected gets any messages

2010-12-18 Thread Dhammika Pathirana
On Sat, Dec 18, 2010 at 12:30 AM, Martin Sustrik sust...@250bpm.com wrote: Dhammika, 1) Using one zmq context, I bind four separate zmq sockets (in java) to the same ipc port; e.g. ipc://tmp/test Hm, you should be able to bind at most one socket to a particular endpoint. Are you sure all

[zeromq-dev] [PATCH] resolve function declaration isn't a prototype warnings

2010-12-18 Thread MinRK
Hello, Tiny patch changes two declarations in headers to form f(void); instead of f(); which eliminates the function declaration isn't a prototype warnings when compiling against zeromq -MinRK 0001-resolve-function-declaration-isn-t-a-prototype.patch Description: Binary data