diff options
author | James O'Beirne <james.obeirne@gmail.com> | 2018-06-13 14:50:59 -0400 |
---|---|---|
committer | James O'Beirne <james.obeirne@gmail.com> | 2019-04-29 13:42:25 -0400 |
commit | ae5f2b6a6cc7b2260e9dff99c1bf378922e0e988 (patch) | |
tree | 6646e4d0936dc2217a10b3972fb9250f5beaadc9 /src/util/system.h | |
parent | 188ca75e5fe4837d16241446558c7566912f67b2 (diff) |
threads: introduce util/threadnames, refactor thread naming
This work is prerequisite to attaching thread names to log lines and deadlock
debug utilities. This code allows setting of an "internal" threadname per
thread on platforms where thread_local is available.
This commit also moves RenameThread() out of a more general module and adds a
numeric suffix to disambiguate between threads with the same name. It
explicitly names a few main threads using the new util::ThreadRename().
Diffstat (limited to 'src/util/system.h')
-rw-r--r-- | src/util/system.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util/system.h b/src/util/system.h index 54eb88e261..1a83cb67b1 100644 --- a/src/util/system.h +++ b/src/util/system.h @@ -20,6 +20,7 @@ #include <fs.h> #include <logging.h> #include <sync.h> +#include <util/threadnames.h> #include <tinyformat.h> #include <util/memory.h> #include <util/time.h> @@ -325,15 +326,12 @@ std::string HelpMessageOpt(const std::string& option, const std::string& message */ int GetNumCores(); -void RenameThread(const char* name); - /** * .. and a wrapper that just calls func once */ template <typename Callable> void TraceThread(const char* name, Callable func) { - std::string s = strprintf("bitcoin-%s", name); - RenameThread(s.c_str()); + util::ThreadRename(name); try { LogPrintf("%s thread start\n", name); |