Commit 43e88688 authored by Martin Sustrik's avatar Martin Sustrik

Added explicit error message in case of memory exhaustion

Signed-off-by: 's avatarMartin Sustrik <sustrik@250bpm.com>
parent 98ccff1a
...@@ -56,7 +56,7 @@ void zmq::connect_session_t::start_connecting (bool wait_) ...@@ -56,7 +56,7 @@ void zmq::connect_session_t::start_connecting (bool wait_)
zmq_connecter_t *connecter = new (std::nothrow) zmq_connecter_t ( zmq_connecter_t *connecter = new (std::nothrow) zmq_connecter_t (
io_thread, this, options, protocol.c_str (), address.c_str (), io_thread, this, options, protocol.c_str (), address.c_str (),
wait_); wait_);
zmq_assert (connecter); alloc_assert (connecter);
launch_child (connecter); launch_child (connecter);
return; return;
} }
...@@ -77,7 +77,7 @@ void zmq::connect_session_t::start_connecting (bool wait_) ...@@ -77,7 +77,7 @@ void zmq::connect_session_t::start_connecting (bool wait_)
// PGM sender. // PGM sender.
pgm_sender_t *pgm_sender = new (std::nothrow) pgm_sender_t ( pgm_sender_t *pgm_sender = new (std::nothrow) pgm_sender_t (
io_thread, options); io_thread, options);
zmq_assert (pgm_sender); alloc_assert (pgm_sender);
int rc = pgm_sender->init (udp_encapsulation, address.c_str ()); int rc = pgm_sender->init (udp_encapsulation, address.c_str ());
zmq_assert (rc == 0); zmq_assert (rc == 0);
...@@ -89,7 +89,7 @@ void zmq::connect_session_t::start_connecting (bool wait_) ...@@ -89,7 +89,7 @@ void zmq::connect_session_t::start_connecting (bool wait_)
// PGM receiver. // PGM receiver.
pgm_receiver_t *pgm_receiver = new (std::nothrow) pgm_receiver_t ( pgm_receiver_t *pgm_receiver = new (std::nothrow) pgm_receiver_t (
io_thread, options); io_thread, options);
zmq_assert (pgm_receiver); alloc_assert (pgm_receiver);
int rc = pgm_receiver->init (udp_encapsulation, address.c_str ()); int rc = pgm_receiver->init (udp_encapsulation, address.c_str ());
zmq_assert (rc == 0); zmq_assert (rc == 0);
......
...@@ -43,21 +43,21 @@ zmq::ctx_t::ctx_t (uint32_t io_threads_) : ...@@ -43,21 +43,21 @@ zmq::ctx_t::ctx_t (uint32_t io_threads_) :
// internal log socket and the zmq_term thread the reaper thread. // internal log socket and the zmq_term thread the reaper thread.
slot_count = max_sockets + io_threads_ + 3; slot_count = max_sockets + io_threads_ + 3;
slots = (mailbox_t**) malloc (sizeof (mailbox_t*) * slot_count); slots = (mailbox_t**) malloc (sizeof (mailbox_t*) * slot_count);
zmq_assert (slots); alloc_assert (slots);
// Initialise the infrastructure for zmq_term thread. // Initialise the infrastructure for zmq_term thread.
slots [term_tid] = &term_mailbox; slots [term_tid] = &term_mailbox;
// Create the reaper thread. // Create the reaper thread.
reaper = new (std::nothrow) reaper_t (this, reaper_tid); reaper = new (std::nothrow) reaper_t (this, reaper_tid);
zmq_assert (reaper); alloc_assert (reaper);
slots [reaper_tid] = reaper->get_mailbox (); slots [reaper_tid] = reaper->get_mailbox ();
reaper->start (); reaper->start ();
// Create I/O thread objects and launch them. // Create I/O thread objects and launch them.
for (uint32_t i = 2; i != io_threads_ + 2; i++) { for (uint32_t i = 2; i != io_threads_ + 2; i++) {
io_thread_t *io_thread = new (std::nothrow) io_thread_t (this, i); io_thread_t *io_thread = new (std::nothrow) io_thread_t (this, i);
zmq_assert (io_thread); alloc_assert (io_thread);
io_threads.push_back (io_thread); io_threads.push_back (io_thread);
slots [i] = io_thread->get_mailbox (); slots [i] = io_thread->get_mailbox ();
io_thread->start (); io_thread->start ();
......
...@@ -54,7 +54,7 @@ namespace zmq ...@@ -54,7 +54,7 @@ namespace zmq
bufsize (bufsize_) bufsize (bufsize_)
{ {
buf = (unsigned char*) malloc (bufsize_); buf = (unsigned char*) malloc (bufsize_);
zmq_assert (buf); alloc_assert (buf);
} }
// The destructor doesn't have to be virtual. It is mad virtual // The destructor doesn't have to be virtual. It is mad virtual
......
...@@ -44,7 +44,7 @@ namespace zmq ...@@ -44,7 +44,7 @@ namespace zmq
bufsize (bufsize_) bufsize (bufsize_)
{ {
buf = (unsigned char*) malloc (bufsize_); buf = (unsigned char*) malloc (bufsize_);
zmq_assert (buf); alloc_assert (buf);
} }
// The destructor doesn't have to be virtual. It is made virtual // The destructor doesn't have to be virtual. It is made virtual
......
...@@ -53,7 +53,7 @@ zmq::epoll_t::~epoll_t () ...@@ -53,7 +53,7 @@ zmq::epoll_t::~epoll_t ()
zmq::epoll_t::handle_t zmq::epoll_t::add_fd (fd_t fd_, i_poll_events *events_) zmq::epoll_t::handle_t zmq::epoll_t::add_fd (fd_t fd_, i_poll_events *events_)
{ {
poll_entry_t *pe = new (std::nothrow) poll_entry_t; poll_entry_t *pe = new (std::nothrow) poll_entry_t;
zmq_assert (pe != NULL); alloc_assert (pe);
// The memset is not actually needed. It's here to prevent debugging // The memset is not actually needed. It's here to prevent debugging
// tools to complain about using uninitialised memory. // tools to complain about using uninitialised memory.
......
...@@ -98,7 +98,7 @@ namespace zmq ...@@ -98,7 +98,7 @@ namespace zmq
}\ }\
} while (false) } while (false)
// Provides convenient way to check for POSIX errors. // Provides convenient way to check for POSIX errors.
#define posix_assert(x) \ #define posix_assert(x) \
do {\ do {\
if (unlikely (x)) {\ if (unlikely (x)) {\
...@@ -107,7 +107,7 @@ namespace zmq ...@@ -107,7 +107,7 @@ namespace zmq
}\ }\
} while (false) } while (false)
// Provides convenient way to check for errors from getaddrinfo. // Provides convenient way to check for errors from getaddrinfo.
#define gai_assert(x) \ #define gai_assert(x) \
do {\ do {\
if (unlikely (x)) {\ if (unlikely (x)) {\
...@@ -117,10 +117,16 @@ namespace zmq ...@@ -117,10 +117,16 @@ namespace zmq
}\ }\
} while (false) } while (false)
#endif // Provides convenient way to check whether memory allocation have succeeded.
#define alloc_assert(x) \
#define zmq_not_implemented() \
do {\ do {\
fprintf (stderr, "Hic sunt leones (%s:%d)\n", __FILE__, __LINE__);\ if (unlikely (!x)) {\
abort ();\ fprintf (stderr, "FATAL ERROR: OUT OF MEMORY (%s:%d)\n",\
__FILE__, __LINE__);\
abort ();\
}\
} while (false) } while (false)
#endif
...@@ -30,7 +30,7 @@ zmq::io_thread_t::io_thread_t (ctx_t *ctx_, uint32_t tid_) : ...@@ -30,7 +30,7 @@ zmq::io_thread_t::io_thread_t (ctx_t *ctx_, uint32_t tid_) :
object_t (ctx_, tid_) object_t (ctx_, tid_)
{ {
poller = new (std::nothrow) poller_t; poller = new (std::nothrow) poller_t;
zmq_assert (poller); alloc_assert (poller);
mailbox_handle = poller->add_fd (mailbox.get_fd (), this); mailbox_handle = poller->add_fd (mailbox.get_fd (), this);
poller->set_pollin (mailbox_handle); poller->set_pollin (mailbox_handle);
......
...@@ -50,7 +50,7 @@ static int resolve_nic_name (in_addr* addr_, char const *interface_) ...@@ -50,7 +50,7 @@ static int resolve_nic_name (in_addr* addr_, char const *interface_)
// Allocate memory to get interface names. // Allocate memory to get interface names.
size_t ifr_size = sizeof (struct lifreq) * ifn.lifn_count; size_t ifr_size = sizeof (struct lifreq) * ifn.lifn_count;
char *ifr = (char*) malloc (ifr_size); char *ifr = (char*) malloc (ifr_size);
errno_assert (ifr); alloc_assert (ifr);
// Retrieve interface names. // Retrieve interface names.
lifconf ifc; lifconf ifc;
......
...@@ -79,7 +79,7 @@ zmq::kqueue_t::handle_t zmq::kqueue_t::add_fd (fd_t fd_, ...@@ -79,7 +79,7 @@ zmq::kqueue_t::handle_t zmq::kqueue_t::add_fd (fd_t fd_,
i_poll_events *reactor_) i_poll_events *reactor_)
{ {
poll_entry_t *pe = new (std::nothrow) poll_entry_t; poll_entry_t *pe = new (std::nothrow) poll_entry_t;
zmq_assert (pe != NULL); alloc_assert (pe);
pe->fd = fd_; pe->fd = fd_;
pe->flag_pollin = 0; pe->flag_pollin = 0;
......
...@@ -228,7 +228,7 @@ void zmq::object_t::send_attach (session_t *destination_, i_engine *engine_, ...@@ -228,7 +228,7 @@ void zmq::object_t::send_attach (session_t *destination_, i_engine *engine_,
(unsigned char) peer_identity_.size (); (unsigned char) peer_identity_.size ();
cmd.args.attach.peer_identity = cmd.args.attach.peer_identity =
(unsigned char*) malloc (peer_identity_.size ()); (unsigned char*) malloc (peer_identity_.size ());
zmq_assert (cmd.args.attach.peer_identity_size); alloc_assert (cmd.args.attach.peer_identity_size);
memcpy (cmd.args.attach.peer_identity, peer_identity_.data (), memcpy (cmd.args.attach.peer_identity, peer_identity_.data (),
peer_identity_.size ()); peer_identity_.size ());
} }
...@@ -259,7 +259,7 @@ void zmq::object_t::send_bind (own_t *destination_, reader_t *in_pipe_, ...@@ -259,7 +259,7 @@ void zmq::object_t::send_bind (own_t *destination_, reader_t *in_pipe_,
(unsigned char) peer_identity_.size (); (unsigned char) peer_identity_.size ();
cmd.args.bind.peer_identity = cmd.args.bind.peer_identity =
(unsigned char*) malloc (peer_identity_.size ()); (unsigned char*) malloc (peer_identity_.size ());
zmq_assert (cmd.args.bind.peer_identity_size); alloc_assert (cmd.args.bind.peer_identity_size);
memcpy (cmd.args.bind.peer_identity, peer_identity_.data (), memcpy (cmd.args.bind.peer_identity, peer_identity_.data (),
peer_identity_.size ()); peer_identity_.size ());
} }
......
...@@ -212,6 +212,7 @@ void zmq::pgm_receiver_t::in_event () ...@@ -212,6 +212,7 @@ void zmq::pgm_receiver_t::in_event ()
// Create and connect decoder for the peer. // Create and connect decoder for the peer.
it->second.decoder = new (std::nothrow) decoder_t (0); it->second.decoder = new (std::nothrow) decoder_t (0);
alloc_assert (it->second.decoder);
it->second.decoder->set_inout (inout); it->second.decoder->set_inout (inout);
} }
......
...@@ -55,7 +55,7 @@ int zmq::pgm_sender_t::init (bool udp_encapsulation_, const char *network_) ...@@ -55,7 +55,7 @@ int zmq::pgm_sender_t::init (bool udp_encapsulation_, const char *network_)
out_buffer_size = pgm_socket.get_max_tsdu_size (); out_buffer_size = pgm_socket.get_max_tsdu_size ();
out_buffer = (unsigned char*) malloc (out_buffer_size); out_buffer = (unsigned char*) malloc (out_buffer_size);
zmq_assert (out_buffer); alloc_assert (out_buffer);
return rc; return rc;
} }
......
...@@ -358,6 +358,7 @@ int zmq::pgm_socket_t::init (bool udp_encapsulation_, const char *network_) ...@@ -358,6 +358,7 @@ int zmq::pgm_socket_t::init (bool udp_encapsulation_, const char *network_)
zmq_assert (pgm_msgv_len); zmq_assert (pgm_msgv_len);
pgm_msgv = (pgm_msgv_t*) malloc (sizeof (pgm_msgv_t) * pgm_msgv_len); pgm_msgv = (pgm_msgv_t*) malloc (sizeof (pgm_msgv_t) * pgm_msgv_len);
alloc_assert (pgm_msgv);
} }
return 0; return 0;
...@@ -602,7 +603,7 @@ ssize_t zmq::pgm_socket_t::receive (void **raw_data_, const pgm_tsi_t **tsi_) ...@@ -602,7 +603,7 @@ ssize_t zmq::pgm_socket_t::receive (void **raw_data_, const pgm_tsi_t **tsi_)
// Data loss. // Data loss.
if (status == PGM_IO_STATUS_RESET) { if (status == PGM_IO_STATUS_RESET) {
struct pgm_sk_buff_t* skb = pgm_msgv[0].msgv_skb[0]; struct pgm_sk_buff_t* skb = pgm_msgv [0].msgv_skb [0];
// Save lost data TSI. // Save lost data TSI.
*tsi_ = &skb->tsi; *tsi_ = &skb->tsi;
......
...@@ -182,7 +182,7 @@ zmq::writer_t::writer_t (object_t *parent_, pipe_t *pipe_, reader_t *reader_, ...@@ -182,7 +182,7 @@ zmq::writer_t::writer_t (object_t *parent_, pipe_t *pipe_, reader_t *reader_,
// Open the swap file, if required. // Open the swap file, if required.
if (swap_size_ > 0) { if (swap_size_ > 0) {
swap = new (std::nothrow) swap_t (swap_size_); swap = new (std::nothrow) swap_t (swap_size_);
zmq_assert (swap); alloc_assert (swap);
int rc = swap->init (); int rc = swap->init ();
zmq_assert (rc == 0); zmq_assert (rc == 0);
} }
...@@ -399,10 +399,10 @@ void zmq::create_pipe (object_t *reader_parent_, object_t *writer_parent_, ...@@ -399,10 +399,10 @@ void zmq::create_pipe (object_t *reader_parent_, object_t *writer_parent_,
// writer. The pipe will be handled by reader and writer, its never passed // writer. The pipe will be handled by reader and writer, its never passed
// to the user. Reader and writer are returned to the user. // to the user. Reader and writer are returned to the user.
pipe_t *pipe = new (std::nothrow) pipe_t (); pipe_t *pipe = new (std::nothrow) pipe_t ();
zmq_assert (pipe); alloc_assert (pipe);
*reader_ = new (std::nothrow) reader_t (reader_parent_, pipe, lwm); *reader_ = new (std::nothrow) reader_t (reader_parent_, pipe, lwm);
zmq_assert (*reader_); alloc_assert (*reader_);
*writer_ = new (std::nothrow) writer_t (writer_parent_, pipe, *reader_, *writer_ = new (std::nothrow) writer_t (writer_parent_, pipe, *reader_,
hwm_, swap_size_); hwm_, swap_size_);
zmq_assert (*writer_); alloc_assert (*writer_);
} }
...@@ -27,7 +27,7 @@ zmq::reaper_t::reaper_t (class ctx_t *ctx_, uint32_t tid_) : ...@@ -27,7 +27,7 @@ zmq::reaper_t::reaper_t (class ctx_t *ctx_, uint32_t tid_) :
terminating (false) terminating (false)
{ {
poller = new (std::nothrow) poller_t; poller = new (std::nothrow) poller_t;
zmq_assert (poller); alloc_assert (poller);
mailbox_handle = poller->add_fd (mailbox.get_fd (), this); mailbox_handle = poller->add_fd (mailbox.get_fd (), this);
poller->set_pollin (mailbox_handle); poller->set_pollin (mailbox_handle);
......
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <new>
#include "session.hpp" #include "session.hpp"
#include "socket_base.hpp" #include "socket_base.hpp"
#include "i_engine.hpp" #include "i_engine.hpp"
......
...@@ -103,7 +103,7 @@ zmq::socket_base_t *zmq::socket_base_t::create (int type_, class ctx_t *parent_, ...@@ -103,7 +103,7 @@ zmq::socket_base_t *zmq::socket_base_t::create (int type_, class ctx_t *parent_,
errno = EINVAL; errno = EINVAL;
return NULL; return NULL;
} }
zmq_assert (s); alloc_assert (s);
return s; return s;
} }
...@@ -318,7 +318,7 @@ int zmq::socket_base_t::bind (const char *addr_) ...@@ -318,7 +318,7 @@ int zmq::socket_base_t::bind (const char *addr_)
// Create and run the listener. // Create and run the listener.
zmq_listener_t *listener = new (std::nothrow) zmq_listener_t ( zmq_listener_t *listener = new (std::nothrow) zmq_listener_t (
io_thread, this, options); io_thread, this, options);
zmq_assert (listener); alloc_assert (listener);
int rc = listener->set_address (protocol.c_str(), address.c_str ()); int rc = listener->set_address (protocol.c_str(), address.c_str ());
if (rc != 0) { if (rc != 0) {
delete listener; delete listener;
...@@ -420,7 +420,7 @@ int zmq::socket_base_t::connect (const char *addr_) ...@@ -420,7 +420,7 @@ int zmq::socket_base_t::connect (const char *addr_)
// Create session. // Create session.
connect_session_t *session = new (std::nothrow) connect_session_t ( connect_session_t *session = new (std::nothrow) connect_session_t (
io_thread, this, options, protocol.c_str (), address.c_str ()); io_thread, this, options, protocol.c_str (), address.c_str ());
zmq_assert (session); alloc_assert (session);
// If 'immediate connect' feature is required, we'll create the pipes // If 'immediate connect' feature is required, we'll create the pipes
// to the session straight away. Otherwise, they'll be created by the // to the session straight away. Otherwise, they'll be created by the
......
...@@ -53,10 +53,10 @@ zmq::swap_t::swap_t (int64_t filesize_) : ...@@ -53,10 +53,10 @@ zmq::swap_t::swap_t (int64_t filesize_) :
zmq_assert (block_size > 0); zmq_assert (block_size > 0);
buf1 = new (std::nothrow) char [block_size]; buf1 = new (std::nothrow) char [block_size];
zmq_assert (buf1); alloc_assert (buf1);
buf2 = new (std::nothrow) char [block_size]; buf2 = new (std::nothrow) char [block_size];
zmq_assert (buf2); alloc_assert (buf2);
read_buf = write_buf = buf1; read_buf = write_buf = buf1;
} }
...@@ -278,7 +278,8 @@ void zmq::swap_t::fill_buf (char *buf, int64_t pos) ...@@ -278,7 +278,8 @@ void zmq::swap_t::fill_buf (char *buf, int64_t pos)
#ifdef ZMQ_HAVE_WINDOWS #ifdef ZMQ_HAVE_WINDOWS
int rc = _read (fd, &buf [octets_stored], octets_total - octets_stored); int rc = _read (fd, &buf [octets_stored], octets_total - octets_stored);
#else #else
ssize_t rc = read (fd, &buf [octets_stored], octets_total - octets_stored); ssize_t rc = read (fd, &buf [octets_stored],
octets_total - octets_stored);
#endif #endif
errno_assert (rc > 0); errno_assert (rc > 0);
octets_stored += rc; octets_stored += rc;
...@@ -302,9 +303,11 @@ void zmq::swap_t::save_write_buf () ...@@ -302,9 +303,11 @@ void zmq::swap_t::save_write_buf ()
while (octets_stored < octets_total) { while (octets_stored < octets_total) {
#ifdef ZMQ_HAVE_WINDOWS #ifdef ZMQ_HAVE_WINDOWS
int rc = _write (fd, &write_buf [octets_stored], octets_total - octets_stored); int rc = _write (fd, &write_buf [octets_stored],
octets_total - octets_stored);
#else #else
ssize_t rc = write (fd, &write_buf [octets_stored], octets_total - octets_stored); ssize_t rc = write (fd, &write_buf [octets_stored],
octets_total - octets_stored);
#endif #endif
errno_assert (rc > 0); errno_assert (rc > 0);
octets_stored += rc; octets_stored += rc;
......
...@@ -73,7 +73,7 @@ void zmq::trie_t::add (unsigned char *prefix_, size_t size_) ...@@ -73,7 +73,7 @@ void zmq::trie_t::add (unsigned char *prefix_, size_t size_)
count = (min < c ? c - min : min - c) + 1; count = (min < c ? c - min : min - c) + 1;
next.table = (trie_t**) next.table = (trie_t**)
malloc (sizeof (trie_t*) * count); malloc (sizeof (trie_t*) * count);
zmq_assert (next.table); alloc_assert (next.table);
for (unsigned short i = 0; i != count; ++i) for (unsigned short i = 0; i != count; ++i)
next.table [i] = 0; next.table [i] = 0;
min = std::min (min, c); min = std::min (min, c);
...@@ -110,14 +110,14 @@ void zmq::trie_t::add (unsigned char *prefix_, size_t size_) ...@@ -110,14 +110,14 @@ void zmq::trie_t::add (unsigned char *prefix_, size_t size_)
if (count == 1) { if (count == 1) {
if (!next.node) { if (!next.node) {
next.node = new (std::nothrow) trie_t; next.node = new (std::nothrow) trie_t;
zmq_assert (next.node); alloc_assert (next.node);
} }
next.node->add (prefix_ + 1, size_ - 1); next.node->add (prefix_ + 1, size_ - 1);
} }
else { else {
if (!next.table [c - min]) { if (!next.table [c - min]) {
next.table [c - min] = new (std::nothrow) trie_t; next.table [c - min] = new (std::nothrow) trie_t;
zmq_assert (next.table [c - min]); alloc_assert (next.table [c - min]);
} }
next.table [c - min]->add (prefix_ + 1, size_ - 1); next.table [c - min]->add (prefix_ + 1, size_ - 1);
} }
......
...@@ -50,7 +50,7 @@ namespace zmq ...@@ -50,7 +50,7 @@ namespace zmq
inline yqueue_t () inline yqueue_t ()
{ {
begin_chunk = (chunk_t*) malloc (sizeof (chunk_t)); begin_chunk = (chunk_t*) malloc (sizeof (chunk_t));
zmq_assert (begin_chunk); alloc_assert (begin_chunk);
begin_pos = 0; begin_pos = 0;
back_chunk = NULL; back_chunk = NULL;
back_pos = 0; back_pos = 0;
...@@ -105,7 +105,7 @@ namespace zmq ...@@ -105,7 +105,7 @@ namespace zmq
sc->prev = end_chunk; sc->prev = end_chunk;
} else { } else {
end_chunk->next = (chunk_t*) malloc (sizeof (chunk_t)); end_chunk->next = (chunk_t*) malloc (sizeof (chunk_t));
zmq_assert (end_chunk->next); alloc_assert (end_chunk->next);
end_chunk->next->prev = end_chunk; end_chunk->next->prev = end_chunk;
} }
end_chunk = end_chunk->next; end_chunk = end_chunk->next;
......
...@@ -115,7 +115,7 @@ int zmq_msg_init_data (zmq_msg_t *msg_, void *data_, size_t size_, ...@@ -115,7 +115,7 @@ int zmq_msg_init_data (zmq_msg_t *msg_, void *data_, size_t size_,
zmq_free_fn *ffn_, void *hint_) zmq_free_fn *ffn_, void *hint_)
{ {
msg_->content = (zmq::msg_content_t*) malloc (sizeof (zmq::msg_content_t)); msg_->content = (zmq::msg_content_t*) malloc (sizeof (zmq::msg_content_t));
zmq_assert (msg_->content); alloc_assert (msg_->content);
msg_->flags = 0; msg_->flags = 0;
zmq::msg_content_t *content = (zmq::msg_content_t*) msg_->content; zmq::msg_content_t *content = (zmq::msg_content_t*) msg_->content;
content->data = data_; content->data = data_;
...@@ -255,7 +255,7 @@ void *zmq_init (int io_threads_) ...@@ -255,7 +255,7 @@ void *zmq_init (int io_threads_)
// Create 0MQ context. // Create 0MQ context.
zmq::ctx_t *ctx = new (std::nothrow) zmq::ctx_t ((uint32_t) io_threads_); zmq::ctx_t *ctx = new (std::nothrow) zmq::ctx_t ((uint32_t) io_threads_);
zmq_assert (ctx); alloc_assert (ctx);
return (void*) ctx; return (void*) ctx;
} }
...@@ -403,7 +403,7 @@ int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_) ...@@ -403,7 +403,7 @@ int zmq_poll (zmq_pollitem_t *items_, int nitems_, long timeout_)
uint64_t end = 0; uint64_t end = 0;
pollfd *pollfds = (pollfd*) malloc (nitems_ * sizeof (pollfd)); pollfd *pollfds = (pollfd*) malloc (nitems_ * sizeof (pollfd));
zmq_assert (pollfds); alloc_assert (pollfds);
// Build pollset for poll () system call. // Build pollset for poll () system call.
for (int i = 0; i != nitems_; i++) { for (int i = 0; i != nitems_; i++) {
...@@ -761,7 +761,7 @@ void zmq_sleep (int seconds_) ...@@ -761,7 +761,7 @@ void zmq_sleep (int seconds_)
void *zmq_stopwatch_start () void *zmq_stopwatch_start ()
{ {
uint64_t *watch = (uint64_t*) malloc (sizeof (uint64_t)); uint64_t *watch = (uint64_t*) malloc (sizeof (uint64_t));
assert (watch); alloc_assert (watch);
*watch = zmq::clock_t::now_us (); *watch = zmq::clock_t::now_us ();
return (void*) watch; return (void*) watch;
} }
......
...@@ -93,7 +93,7 @@ void zmq::zmq_connecter_t::out_event () ...@@ -93,7 +93,7 @@ void zmq::zmq_connecter_t::out_event ()
// Create an init object. // Create an init object.
zmq_init_t *init = new (std::nothrow) zmq_init_t (io_thread, NULL, zmq_init_t *init = new (std::nothrow) zmq_init_t (io_thread, NULL,
session, fd, options); session, fd, options);
zmq_assert (init); alloc_assert (init);
launch_sibling (init); launch_sibling (init);
// Shut the connecter down. // Shut the connecter down.
......
...@@ -43,7 +43,7 @@ zmq::zmq_init_t::zmq_init_t (io_thread_t *io_thread_, ...@@ -43,7 +43,7 @@ zmq::zmq_init_t::zmq_init_t (io_thread_t *io_thread_,
{ {
// Create the engine object for this connection. // Create the engine object for this connection.
engine = new (std::nothrow) zmq_engine_t (fd_, options); engine = new (std::nothrow) zmq_engine_t (fd_, options);
zmq_assert (engine); alloc_assert (engine);
} }
zmq::zmq_init_t::~zmq_init_t () zmq::zmq_init_t::~zmq_init_t ()
...@@ -180,7 +180,7 @@ void zmq::zmq_init_t::dispatch_engine () ...@@ -180,7 +180,7 @@ void zmq::zmq_init_t::dispatch_engine ()
if (peer_identity [0] == 0) { if (peer_identity [0] == 0) {
session = new (std::nothrow) transient_session_t (io_thread, session = new (std::nothrow) transient_session_t (io_thread,
socket, options); socket, options);
zmq_assert (session); alloc_assert (session);
session->inc_seqnum (); session->inc_seqnum ();
launch_sibling (session); launch_sibling (session);
send_attach (session, ephemeral_engine, peer_identity, false); send_attach (session, ephemeral_engine, peer_identity, false);
...@@ -205,7 +205,7 @@ void zmq::zmq_init_t::dispatch_engine () ...@@ -205,7 +205,7 @@ void zmq::zmq_init_t::dispatch_engine ()
// being attached. // being attached.
session = new (std::nothrow) named_session_t (io_thread, socket, session = new (std::nothrow) named_session_t (io_thread, socket,
options, peer_identity); options, peer_identity);
zmq_assert (session); alloc_assert (session);
session->inc_seqnum (); session->inc_seqnum ();
launch_sibling (session); launch_sibling (session);
send_attach (session, ephemeral_engine, peer_identity, false); send_attach (session, ephemeral_engine, peer_identity, false);
......
...@@ -71,7 +71,7 @@ void zmq::zmq_listener_t::in_event () ...@@ -71,7 +71,7 @@ void zmq::zmq_listener_t::in_event ()
// Create and launch an init object. // Create and launch an init object.
zmq_init_t *init = new (std::nothrow) zmq_init_t (io_thread, socket, zmq_init_t *init = new (std::nothrow) zmq_init_t (io_thread, socket,
NULL, fd, options); NULL, fd, options);
zmq_assert (init); alloc_assert (init);
launch_child (init); launch_child (init);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment