diff options
Diffstat (limited to 'src/ctx.hpp')
-rw-r--r-- | src/ctx.hpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ctx.hpp b/src/ctx.hpp index 6a337d5..59d753e 100644 --- a/src/ctx.hpp +++ b/src/ctx.hpp @@ -93,9 +93,6 @@ namespace zmq void unregister_endpoints (zmq::socket_base_t *socket_); endpoint_t find_endpoint (const char *addr_); - // Logging. - void log (const char *format_, va_list args_); - enum { term_tid = 0, reaper_tid = 1 @@ -148,11 +145,6 @@ namespace zmq // Synchronisation of access to the list of inproc endpoints. mutex_t endpoints_sync; - // PUB socket for logging. The socket is shared among all the threads, - // thus it is synchronised by a mutex. - zmq::socket_base_t *log_socket; - mutex_t log_sync; - // Monitor object attached to the context. zmq::monitor_t *monitor; |