Hi Gaspard, > From my guess, the "zombie" won't let go and keeps haunting the > application because it has some unsent messages in its queue (PUSH socket).
Use ZMQ_LINGER option to specify the time sockets try to send the pending messages after they are closed. By setting it to 0, the socket will exit immediately on zmq_close(). Martin _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
