LCOV - code coverage report
Current view: top level - src/util - thread.cpp (source / functions) Coverage Total Hit
Test: test_bitcoin_coverage.info Lines: 50.0 % 14 7
Test Date: 2024-08-28 04:44:32 Functions: 100.0 % 1 1
Branches: 28.6 % 14 4

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2021-2022 The Bitcoin Core developers
       2                 :             : // Distributed under the MIT software license, see the accompanying
       3                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :             : 
       5                 :             : #include <util/thread.h>
       6                 :             : 
       7                 :             : #include <logging.h>
       8                 :             : #include <util/exception.h>
       9                 :             : #include <util/threadnames.h>
      10                 :             : 
      11                 :             : #include <exception>
      12                 :             : #include <functional>
      13                 :             : #include <string>
      14                 :             : #include <utility>
      15                 :             : 
      16                 :         171 : void util::TraceThread(std::string_view thread_name, std::function<void()> thread_func)
      17                 :             : {
      18         [ +  - ]:         171 :     util::ThreadRename(std::string{thread_name});
      19                 :         171 :     try {
      20         [ +  - ]:         171 :         LogPrintf("%s thread start\n", thread_name);
      21         [ +  - ]:         171 :         thread_func();
      22         [ +  - ]:         171 :         LogPrintf("%s thread exit\n", thread_name);
      23         [ -  - ]:           0 :     } catch (const std::exception& e) {
      24         [ -  - ]:           0 :         PrintExceptionContinue(&e, thread_name);
      25                 :           0 :         throw;
      26                 :           0 :     } catch (...) {
      27         [ -  - ]:           0 :         PrintExceptionContinue(nullptr, thread_name);
      28                 :           0 :         throw;
      29                 :           0 :     }
      30                 :         171 : }
        

Generated by: LCOV version 2.0-1