mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-02 17:56:16 +00:00
-BEGIN VERIFY SCRIPT- sed --in-place --regexp-extended \ 's;( 20[0-2][0-9])(-20[0-2][0-9])? The Bitcoin Core developers;\1-present The Bitcoin Core developers;g' \ $( git grep -l 'The Bitcoin Core developers' -- ':(exclude)COPYING' ':(exclude)src/ipc/libmultiprocess' ':(exclude)src/minisketch' ) -END VERIFY SCRIPT-
27 lines
909 B
C++
27 lines
909 B
C++
// Copyright (c) 2018-present 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(const std::string&);
|
|
|
|
//! Set the internal (in-memory) name of the current thread only.
|
|
void ThreadSetInternalName(const std::string&);
|
|
|
|
//! Get the thread's internal (in-memory) name; used e.g. for identification in
|
|
//! logging.
|
|
std::string ThreadGetInternalName();
|
|
|
|
} // namespace util
|
|
|
|
#endif // BITCOIN_UTIL_THREADNAMES_H
|