Bitcoin Core 31.99.0
P2P Digital Currency
threadnames.cpp
Go to the documentation of this file.
1// Copyright (c) 2018-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <util/threadnames.h>
6#include <util/check.h>
7
8#include <algorithm>
9#include <cstring>
10#include <string>
11
12#if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
13#include <pthread.h>
14#include <pthread_np.h>
15#endif
16
17#if __has_include(<sys/prctl.h>)
18#include <sys/prctl.h>
19#endif
20
21#ifdef WIN32
22#include <windows.h>
23#endif
24
27static void SetThreadName(const char* name)
28{
29#if defined(PR_SET_NAME)
30 // Only the first 15 characters are used (16 - NUL terminator)
31 ::prctl(PR_SET_NAME, name, 0, 0, 0);
32#elif (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
33 pthread_set_name_np(pthread_self(), name);
34#elif defined(__APPLE__)
35 pthread_setname_np(name);
36#elif defined(WIN32)
37 // Thread names are ASCII-only, so widening each character is sufficient as
38 // a conversion to UTF-16.
39 const std::wstring wname{name, name + std::strlen(name)};
40 ::SetThreadDescription(::GetCurrentThread(), wname.c_str());
41#else
42 // Prevent warnings for unused parameters...
43 (void)name;
44#endif
45}
46
53static thread_local char g_thread_name[128]{'\0'};
57static void SetInternalName(const std::string& name)
58{
59 const size_t copy_bytes{std::min(sizeof(g_thread_name) - 1, name.length())};
60 std::memcpy(g_thread_name, name.data(), copy_bytes);
61 g_thread_name[copy_bytes] = '\0';
62}
63
64void util::ThreadRename(const std::string& name)
65{
66 Assume(name.size() <= 13); // Linux keeps 15 bytes
67 SetThreadName(("b-" + name).c_str());
69}
70
71void util::ThreadSetInternalName(const std::string& name)
72{
74}
#define Assume(val)
Assume is the identity function.
Definition: check.h:128
void ThreadRename(const std::string &)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name.
Definition: threadnames.cpp:64
std::string ThreadGetInternalName()
Get the thread's internal (in-memory) name; used e.g.
Definition: threadnames.cpp:54
void ThreadSetInternalName(const std::string &)
Set the internal (in-memory) name of the current thread only.
Definition: threadnames.cpp:71
const char * name
Definition: rest.cpp:56
static thread_local char g_thread_name[128]
The name of the thread.
Definition: threadnames.cpp:53
static void SetInternalName(const std::string &name)
Set the in-memory internal name for this thread.
Definition: threadnames.cpp:57
static void SetThreadName(const char *name)
Set the thread's name at the process level.
Definition: threadnames.cpp:27