LCOV - code coverage report
Current view: top level - src/util - threadnames.cpp (source / functions) Hit Total Coverage
Test: total_coverage.info Lines: 13 13 100.0 %
Date: 2020-09-26 01:30:44 Functions: 6 6 100.0 %

          Line data    Source code
       1             : // Copyright (c) 2018-2019 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             : #if defined(HAVE_CONFIG_H)
       6             : #include <config/bitcoin-config.h>
       7             : #endif
       8             : 
       9             : #include <thread>
      10             : 
      11             : #if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
      12             : #include <pthread.h>
      13             : #include <pthread_np.h>
      14             : #endif
      15             : 
      16             : #include <util/threadnames.h>
      17             : 
      18             : #ifdef HAVE_SYS_PRCTL_H
      19             : #include <sys/prctl.h> // For prctl, PR_SET_NAME, PR_GET_NAME
      20             : #endif
      21             : 
      22             : //! Set the thread's name at the process level. Does not affect the
      23             : //! internal name.
      24        8549 : static void SetThreadName(const char* name)
      25             : {
      26             : #if defined(PR_SET_NAME)
      27             :     // Only the first 15 characters are used (16 - NUL terminator)
      28             :     ::prctl(PR_SET_NAME, name, 0, 0, 0);
      29             : #elif (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
      30             :     pthread_set_name_np(pthread_self(), name);
      31             : #elif defined(MAC_OSX)
      32        8549 :     pthread_setname_np(name);
      33             : #else
      34             :     // Prevent warnings for unused parameters...
      35             :     (void)name;
      36             : #endif
      37        8549 : }
      38             : 
      39             : // If we have thread_local, just keep thread ID and name in a thread_local
      40             : // global.
      41             : #if defined(HAVE_THREAD_LOCAL)
      42             : 
      43        8223 : static thread_local std::string g_thread_name;
      44     2150709 : const std::string& util::ThreadGetInternalName() { return g_thread_name; }
      45             : //! Set the in-memory internal name for this thread. Does not affect the process
      46             : //! name.
      47        9033 : static void SetInternalName(std::string name) { g_thread_name = std::move(name); }
      48             : 
      49             : // Without thread_local available, don't handle internal name at all.
      50             : #else
      51             : 
      52             : static const std::string empty_string;
      53             : const std::string& util::ThreadGetInternalName() { return empty_string; }
      54             : static void SetInternalName(std::string name) { }
      55             : #endif
      56             : 
      57        8525 : void util::ThreadRename(std::string&& name)
      58             : {
      59        8525 :     SetThreadName(("b-" + name).c_str());
      60        8481 :     SetInternalName(std::move(name));
      61        8481 : }
      62             : 
      63         549 : void util::ThreadSetInternalName(std::string&& name)
      64             : {
      65         549 :     SetInternalName(std::move(name));
      66         549 : }

Generated by: LCOV version 1.15