diff options
author | Giel van Schijndel <me@mortis.eu> | 2012-06-30 17:14:28 +0200 |
---|---|---|
committer | Giel van Schijndel <me@mortis.eu> | 2012-07-17 01:50:35 +0200 |
commit | 9f46ab62b1ba47ad594d5e06e4fe837297f4790e (patch) | |
tree | 54dbf8d0cf39d3b30ca19061c6f57cc0a8cf92c1 /src/net.cpp | |
parent | 96931d6f78ccc21ec38cd4655b1a250893a6f252 (diff) |
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 <me@mortis.eu>
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 |