summaryrefslogtreecommitdiff
path: root/src/ctx.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:01:26 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:01:26 +0900
commit4c9cc8a724dfee204fb7a42632c1cc802e6aa83f (patch)
treeff0f70f73dcd8385232350aca9c478c49312b265 /src/ctx.hpp
parentb8ba042912233045b6ca74f732bcc7265dfeb5b0 (diff)
Old logging infrastructure removed
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/ctx.hpp')
-rw-r--r--src/ctx.hpp8
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;