mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-04 19:13:35 +01:00
Problem: IO thread name uses space separator, the rest uses /
Solution: use / like the rest of the names
This commit is contained in:
parent
de76789ac6
commit
563396445a
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user