mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-08-04 14:04:49 +02:00

-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- Commits of previous years: - 2021:f47dda2c58
- 2020:fa0074e2d8
- 2019:aaaaad6ac9
31 lines
858 B
C++
31 lines
858 B
C++
// Copyright (c) 2021-2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <util/thread.h>
|
|
|
|
#include <logging.h>
|
|
#include <util/system.h>
|
|
#include <util/threadnames.h>
|
|
|
|
#include <exception>
|
|
#include <functional>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
void util::TraceThread(std::string_view thread_name, std::function<void()> thread_func)
|
|
{
|
|
util::ThreadRename(std::string{thread_name});
|
|
try {
|
|
LogPrintf("%s thread start\n", thread_name);
|
|
thread_func();
|
|
LogPrintf("%s thread exit\n", thread_name);
|
|
} catch (const std::exception& e) {
|
|
PrintExceptionContinue(&e, thread_name);
|
|
throw;
|
|
} catch (...) {
|
|
PrintExceptionContinue(nullptr, thread_name);
|
|
throw;
|
|
}
|
|
}
|