From 49a851677096ba117bb358d0bc5c0a32e3bd5dad Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Sat, 7 Oct 2017 22:51:52 -0700 Subject: [PATCH] Make sure our threads are named hush-* --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 84b894a1f..5fb9daa92 100644 --- a/src/util.h +++ b/src/util.h @@ -227,7 +227,7 @@ void RenameThread(const char* name); */ template void TraceThread(const char* name, Callable func) { - std::string s = strprintf("zcash-%s", name); + std::string s = strprintf("hush-%s", name); RenameThread(s.c_str()); try {