2021-04-13 20:44:46 +03:00
|
|
|
// Copyright (c) 2021 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>
|
2022-06-09 16:26:55 +01:00
|
|
|
#include <functional>
|
2022-08-31 16:30:35 +01:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2021-04-13 20:44:46 +03:00
|
|
|
|
2022-08-31 16:30:35 +01:00
|
|
|
void util::TraceThread(std::string_view thread_name, std::function<void()> thread_func)
|
2021-04-13 20:44:46 +03:00
|
|
|
{
|
2022-08-31 16:30:35 +01:00
|
|
|
util::ThreadRename(std::string{thread_name});
|
2021-04-13 20:44:46 +03:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|