Commit 56339644 authored by Luca Boccassi's avatar Luca Boccassi

Problem: IO thread name uses space separator, the rest uses /

Solution: use / like the rest of the names
parent de76789a
......@@ -57,7 +57,8 @@ zmq::io_thread_t::~io_thread_t ()
void zmq::io_thread_t::start ()
{
char name[16];
snprintf(name, sizeof(name), "IO %u", get_tid() - zmq::ctx_t::reaper_tid);
snprintf (name, sizeof (name), "IO/%u",
get_tid () - zmq::ctx_t::reaper_tid);
// Start the underlying I/O thread.
_poller->start (name);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment