From db2f7d5bf361d856f98f7dd4122b5c6b9962c525 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 18 Sep 2013 09:32:16 +0200 Subject: [PATCH] Use short name for threadpool worker threads. --- lib/base/threadpool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/threadpool.cpp b/lib/base/threadpool.cpp index 8423f2aca..237ed4e8a 100644 --- a/lib/base/threadpool.cpp +++ b/lib/base/threadpool.cpp @@ -99,7 +99,7 @@ void ThreadPool::Join(void) void ThreadPool::QueueThreadProc(int tid) { std::ostringstream idbuf; - idbuf << "TP #" << m_ID << " Worker #" << tid; + idbuf << "TP #" << m_ID << " W #" << tid; Utility::SetThreadName(idbuf.str()); for (;;) { -- 2.40.0