mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
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>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user