summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-06-04 15:24:06 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-06-04 15:24:06 +0200
commit67ca7dcbe6b072b74a112ce4df4529cda82c0f13 (patch)
tree8837e75fa23a902fe3b00a8f18aa1b80637394a4 /include
parentd844a90690af357988b1c5ba027c740d4182d753 (diff)
obsolete API elements removed - this commit breaks backward compatibility
Diffstat (limited to 'include')
-rw-r--r--include/zmq.h11
-rw-r--r--include/zmq.hpp4
2 files changed, 3 insertions, 12 deletions
diff --git a/include/zmq.h b/include/zmq.h
index a3dc781..3bf55b6 100644
--- a/include/zmq.h
+++ b/include/zmq.h
@@ -144,10 +144,7 @@ ZMQ_EXPORT size_t zmq_msg_size (zmq_msg_t *msg);
/* 0MQ infrastructure (a.k.a. context) initialisation & termination. */
/******************************************************************************/
-/* This flag is obsolete and has no effect. To be removed in next version. */
-#define ZMQ_POLL 1
-
-ZMQ_EXPORT void *zmq_init (int app_threads, int io_threads, int flags);
+ZMQ_EXPORT void *zmq_init (int io_threads);
ZMQ_EXPORT int zmq_term (void *context);
/******************************************************************************/
@@ -155,9 +152,7 @@ ZMQ_EXPORT int zmq_term (void *context);
/******************************************************************************/
/* Socket types. */
-/* ZMQ_P2P is obsolete and scheduled to be removed in version 2.0.8 */
#define ZMQ_PAIR 0
-#define ZMQ_P2P 0
#define ZMQ_PUB 1
#define ZMQ_SUB 2
#define ZMQ_REQ 3
@@ -169,8 +164,6 @@ ZMQ_EXPORT int zmq_term (void *context);
/* Socket options. */
#define ZMQ_HWM 1
-/* TODO: LWM is obsolete and should be removed in next version. */
-#define ZMQ_LWM 2
#define ZMQ_SWAP 3
#define ZMQ_AFFINITY 4
#define ZMQ_IDENTITY 5
@@ -186,8 +179,6 @@ ZMQ_EXPORT int zmq_term (void *context);
/* Send/recv options. */
#define ZMQ_NOBLOCK 1
#define ZMQ_SNDMORE 2
-/* Obsolete. To be removed in 2.0.7 release. */
-#define ZMQ_MORE 2
ZMQ_EXPORT void *zmq_socket (void *context, int type);
ZMQ_EXPORT int zmq_close (void *s);
diff --git a/include/zmq.hpp b/include/zmq.hpp
index d19f642..86ffff6 100644
--- a/include/zmq.hpp
+++ b/include/zmq.hpp
@@ -167,9 +167,9 @@ namespace zmq
public:
- inline context_t (int app_threads_, int io_threads_, int flags_ = 0)
+ inline context_t (int io_threads_)
{
- ptr = zmq_init (app_threads_, io_threads_, flags_);
+ ptr = zmq_init (io_threads_);
if (ptr == NULL)
throw error_t ();
}