From 9cfdb441f45057c7106a101835d65164fce9470a Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Fri, 5 Nov 2010 16:38:52 +0100 Subject: slots renamed to tids Threads were so far identified by integers called 'slots'. This patch renames them to more comprehensible 'tid's (thread IDs). Signed-off-by: Martin Sustrik --- src/socket_base.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/socket_base.hpp') diff --git a/src/socket_base.hpp b/src/socket_base.hpp index ed28ba0..0fdfefd 100644 --- a/src/socket_base.hpp +++ b/src/socket_base.hpp @@ -46,7 +46,7 @@ namespace zmq // Create a socket of a specified type. static socket_base_t *create (int type_, class ctx_t *parent_, - uint32_t slot_); + uint32_t tid_); // Returns the signaler associated with this socket. signaler_t *get_signaler (); @@ -88,7 +88,7 @@ namespace zmq protected: - socket_base_t (class ctx_t *parent_, uint32_t slot_); + socket_base_t (class ctx_t *parent_, uint32_t tid_); virtual ~socket_base_t (); // Concrete algorithms for the x- methods are to be defined by -- cgit v1.2.3