aboutsummaryrefslogtreecommitdiff
path: root/src/walletdb.cpp
diff options
context:
space:
mode:
authorGiel van Schijndel <me@mortis.eu>2012-06-24 17:03:57 +0200
committerGiel van Schijndel <me@mortis.eu>2012-07-17 01:50:35 +0200
commit96931d6f78ccc21ec38cd4655b1a250893a6f252 (patch)
treea7bd6c9bb2d0a9378b6db894b470126d0c2b4221 /src/walletdb.cpp
parent1c009d622ded6dd254d6be5161b4df875d492d12 (diff)
downloadbitcoin-96931d6f78ccc21ec38cd4655b1a250893a6f252.tar.xz
Give threads a recognisable name to aid in debugging
NOTE: These thread names are visible in gdb when using 'info threads'. Additionally both 'top' and 'ps' show these names *unless* told to display the command-line instead of task name. Signed-off-by: Giel van Schijndel <me@mortis.eu>
Diffstat (limited to 'src/walletdb.cpp')
-rw-r--r--src/walletdb.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/walletdb.cpp b/src/walletdb.cpp
index 2c4d4c0ef0..72c548e602 100644
--- a/src/walletdb.cpp
+++ b/src/walletdb.cpp
@@ -323,6 +323,9 @@ int CWalletDB::LoadWallet(CWallet* pwallet)
void ThreadFlushWalletDB(void* parg)
{
+ // Make this thread recognisable as the wallet flushing thread
+ RenameThread("bitcoin-wallet");
+
const string& strFile = ((const string*)parg)[0];
static bool fOneThread;
if (fOneThread)