0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-28 16:15:23 +08:00

Problem: IO thread name starts counting at 1

Solution: start at 0
This commit is contained in:
Luca Boccassi 2019-02-17 19:20:52 +00:00
parent 563396445a
commit d02561eec0

View File

@ -58,7 +58,7 @@ void zmq::io_thread_t::start ()
{
char name[16];
snprintf (name, sizeof (name), "IO/%u",
get_tid () - zmq::ctx_t::reaper_tid);
get_tid () - zmq::ctx_t::reaper_tid - 1);
// Start the underlying I/O thread.
_poller->start (name);
}