From d4e418f5f48a4d73e0a80a54593d11a6cd86d7bc Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Fri, 25 Feb 2011 08:58:01 +0100 Subject: Socket with no owner objects is deallocated immediately Till now the deallocation of such socket was delayed till zmq_term() thus creating a "leak". Signed-off-by: Martin Sustrik --- src/socket_base.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/socket_base.hpp') diff --git a/src/socket_base.hpp b/src/socket_base.hpp index cea5bc8..8b2eab8 100644 --- a/src/socket_base.hpp +++ b/src/socket_base.hpp @@ -97,6 +97,10 @@ namespace zmq void out_event (); void timer_event (int id_); + // To be called after processing commands or invoking any command + // handlers explicitly. If required, it will deallocate the socket. + void check_destroy (); + protected: socket_base_t (class ctx_t *parent_, uint32_t tid_); -- cgit v1.2.3