2019-12-30 06:39:22 -03:00
|
|
|
// Copyright (c) 2018-2019 The Bitcoin Core developers
|
2018-06-13 14:50:59 -04:00
|
|
|
// 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.
|
2019-10-03 01:08:52 -03:00
|
|
|
//! @note Do not call this for the main thread, as this will interfere with
|
|
|
|
//! UNIX utilities such as top and killall. Use ThreadSetInternalName instead.
|
2018-06-13 14:50:59 -04:00
|
|
|
void ThreadRename(std::string&&);
|
|
|
|
|
2019-10-03 01:08:52 -03:00
|
|
|
//! Set the internal (in-memory) name of the current thread only.
|
|
|
|
void ThreadSetInternalName(std::string&&);
|
|
|
|
|
2018-06-13 14:50:59 -04:00
|
|
|
//! 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
|