From 6a5120b1f1c48d19b777f76ac756b00fb624d110 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Wed, 2 Sep 2009 10:22:23 +0200 Subject: python extension & perf tests --- include/zmq.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/zmq.h') diff --git a/include/zmq.h b/include/zmq.h index 2b6f996..f321fa9 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -111,7 +111,7 @@ ZMQ_EXPORT int zmq_msg_init (struct zmq_msg_t *msg); ZMQ_EXPORT int zmq_msg_init_size (struct zmq_msg_t *msg, size_t size); // Initialise a message from an existing buffer. Message isn't copied, -// instead 0SOCKETS infrastructure take ownership of the buffer and call +// instead 0MQ infrastructure take ownership of the buffer and call // deallocation functio (ffn) once it's not needed anymore. ZMQ_EXPORT int zmq_msg_init_data (struct zmq_msg_t *msg, void *data, size_t size, zmq_free_fn *ffn); @@ -139,7 +139,7 @@ ZMQ_EXPORT size_t zmq_msg_size (struct zmq_msg_t *msg); // Returns type of the message. ZMQ_EXPORT int zmq_msg_type (struct zmq_msg_t *msg); -// Initialise 0SOCKETS context. 'app_threads' specifies maximal number +// Initialise 0MQ context. 'app_threads' specifies maximal number // of application threads that can have open sockets at the same time. // 'io_threads' specifies the size of thread pool to handle I/O operations. // @@ -147,7 +147,7 @@ ZMQ_EXPORT int zmq_msg_type (struct zmq_msg_t *msg); // threads declared at all. ZMQ_EXPORT void *zmq_init (int app_threads, int io_threads); -// Deinitialise 0SOCKETS context including all the open sockets. Closing +// Deinitialise 0MQ context including all the open sockets. Closing // sockets after zmq_term has been called will result in undefined behaviour. ZMQ_EXPORT int zmq_term (void *context); -- cgit v1.2.3