9fdaaecf49
Set only the internal name. Fixes #17036 for both `bitcoind` and `bitcoin-qt`. Github-Pull: #17038 Rebased-From: 07e4bdba3bd46c3a15dedb0a2660453c300643dc Tree-SHA512: ed6f1b95a23c4c7863982ee6972429be5af0702ea93f0f17d32d2ef4b01446b1c0528eeadc45289609eda5c02ea68b3d722b8ecdfdf4fff4b02592c2188cc0a0
26 lines
898 B
C++
26 lines
898 B
C++
// Copyright (c) 2018 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_UTIL_THREADNAMES_H
|
|
#define BITCOIN_UTIL_THREADNAMES_H
|
|
|
|
#include <string>
|
|
|
|
namespace util {
|
|
//! Rename a thread both in terms of an internal (in-memory) name as well
|
|
//! as its system thread name.
|
|
//! @note Do not call this for the main thread, as this will interfere with
|
|
//! UNIX utilities such as top and killall. Use ThreadSetInternalName instead.
|
|
void ThreadRename(std::string&&);
|
|
|
|
//! Set the internal (in-memory) name of the current thread only.
|
|
void ThreadSetInternalName(std::string&&);
|
|
|
|
//! Get the thread's internal (in-memory) name; used e.g. for identification in
|
|
//! logging.
|
|
const std::string& ThreadGetInternalName();
|
|
|
|
} // namespace util
|
|
|
|
#endif // BITCOIN_UTIL_THREADNAMES_H
|