From 9f46ab62b1ba47ad594d5e06e4fe837297f4790e Mon Sep 17 00:00:00 2001 From: Giel van Schijndel Date: Sat, 30 Jun 2012 17:14:28 +0200 Subject: Fix thread names after review * Fix wrong thread name for wallet *relocking* thread - Was named the unlocking thread * Use consistent naming Signed-off-by: Giel van Schijndel --- src/net.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/net.cpp') diff --git a/src/net.cpp b/src/net.cpp index 000a10d852..78b5a752db 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -641,7 +641,7 @@ void ThreadSocketHandler(void* parg) IMPLEMENT_RANDOMIZE_STACK(ThreadSocketHandler(parg)); // Make this thread recognisable as the networking thread - RenameThread("bitcoind [net]"); + RenameThread("bitcoin-net"); try { @@ -997,7 +997,7 @@ void ThreadMapPort(void* parg) IMPLEMENT_RANDOMIZE_STACK(ThreadMapPort(parg)); // Make this thread recognisable as the UPnP thread - RenameThread("bitcoind [UPnP]"); + RenameThread("bitcoin-UPnP"); try { @@ -1884,7 +1884,7 @@ void static Discover() void StartNode(void* parg) { // Make this thread recognisable as the startup thread - RenameThread("bitcoin [start]"); + RenameThread("bitcoin-start"); if (semOutbound == NULL) { // initialize semaphore -- cgit v1.2.3