summaryrefslogtreecommitdiff
path: root/src/ctx.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-05-31 09:09:43 +0200
committerMartin Sustrik <sustrik@250bpm.com>2012-06-01 11:02:35 +0200
commit58d54740785eb2c7208a01afb5bd9736e5808069 (patch)
tree19d24c817201842b3781328d5f1a5fb25138a496 /src/ctx.cpp
parentf84ebfdbc64b774b1f00f5b98494e66b8a88fb0b (diff)
Assertions improved
This patch is replaces generic xs_asserts by errno_assers and alloc_asserts as appropriate. It is based on 0MQ patch by Martin Hurton. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/ctx.cpp')
-rw-r--r--src/ctx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctx.cpp b/src/ctx.cpp
index 6460dd2..7909099 100644
--- a/src/ctx.cpp
+++ b/src/ctx.cpp
@@ -268,7 +268,7 @@ int xs::ctx_t::terminate ()
int rc = mailbox_recv (&term_mailbox, &cmd, -1);
if (rc == -1 && errno == EINTR)
return -1;
- xs_assert (rc == 0);
+ errno_assert (rc == 0);
xs_assert (cmd.type == command_t::done);
slot_sync.lock ();
xs_assert (sockets.empty ());