From fbe82b07cd1b544839e3710a3413a9077edcb81e Mon Sep 17 00:00:00 2001 From: "E. G. Patrick Bos" Date: Mon, 5 Nov 2018 20:09:28 +0100 Subject: [PATCH] Add retry of zmq_ctx_destroy in context_t::close() Fixes #171 --- zmq.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zmq.hpp b/zmq.hpp index 38926d8..2dfc796 100644 --- a/zmq.hpp +++ b/zmq.hpp @@ -522,7 +522,11 @@ class context_t if (ptr == NULL) return; - int rc = zmq_ctx_destroy(ptr); + int rc; + do { + rc = zmq_ctx_destroy(ptr); + } while (rc == -1 && errno == EINTR); + ZMQ_ASSERT(rc == 0); ptr = NULL; }