summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-02-04 23:58:41 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-02-04 23:58:41 +0100
commit0888fcd06f1c66ec3dfab744bfc24d1486737c7e (patch)
tree0165404493a5362f8162b84873ed3efdfd090cf9 /src
parent30076c4f7a5b0c70ef0c5a6574cac531bc996f5e (diff)
yqueue_t uses malloc/free instead of new/delete
Diffstat (limited to 'src')
-rw-r--r--src/yqueue.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/yqueue.hpp b/src/yqueue.hpp
index cb20697..28b5fdd 100644
--- a/src/yqueue.hpp
+++ b/src/yqueue.hpp
@@ -20,7 +20,7 @@
#ifndef __ZMQ_YQUEUE_HPP_INCLUDED__
#define __ZMQ_YQUEUE_HPP_INCLUDED__
-#include <new>
+#include <stdlib.h>
#include <stddef.h>
#include "err.hpp"
@@ -49,7 +49,7 @@ namespace zmq
// Create the queue.
inline yqueue_t ()
{
- begin_chunk = new (std::nothrow) chunk_t;
+ begin_chunk = (chunk_t*) malloc (sizeof (chunk_t));
zmq_assert (begin_chunk);
begin_pos = 0;
back_chunk = NULL;
@@ -63,17 +63,17 @@ namespace zmq
{
while (true) {
if (begin_chunk == end_chunk) {
- delete begin_chunk;
+ free (begin_chunk);
break;
}
chunk_t *o = begin_chunk;
begin_chunk = begin_chunk->next;
- delete o;
+ free (o);
}
chunk_t *sc = spare_chunk.xchg (NULL);
if (sc)
- delete sc;
+ free (sc);
}
// Returns reference to the front element of the queue.
@@ -103,7 +103,7 @@ namespace zmq
if (sc) {
end_chunk->next = sc;
} else {
- end_chunk->next = new (std::nothrow) chunk_t;
+ end_chunk->next = (chunk_t*) malloc (sizeof (chunk_t));
zmq_assert (end_chunk->next);
}
end_chunk = end_chunk->next;
@@ -123,7 +123,7 @@ namespace zmq
// use 'o' as the spare.
chunk_t *cs = spare_chunk.xchg (o);
if (cs)
- delete cs;
+ free (cs);
}
}