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; }