CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Static Public Member Functions | Public Attributes
FastTimerService::ThreadGuard Struct Reference

Classes

struct  specific_t
 

Public Member Functions

void finalize ()
 
bool register_thread (FastTimerService::AtomicResources &r)
 
Measurementthread ()
 
 ThreadGuard ()
 
 ~ThreadGuard ()=default
 

Static Public Member Functions

static std::shared_ptr< specific_t > * ptr (void *p)
 
static void retire_thread (void *t)
 

Public Attributes

pthread_key_t key_
 
tbb::concurrent_vector< std::shared_ptr< specific_t > > thread_resources_
 

Detailed Description

Definition at line 466 of file FastTimerService.h.

Constructor & Destructor Documentation

◆ ThreadGuard()

FastTimerService::ThreadGuard::ThreadGuard ( )

Definition at line 1716 of file FastTimerService.cc.

References submitPVResolutionJobs::err, Exception, key_, and retire_thread().

1716  {
1717  auto err = ::pthread_key_create(&key_, retire_thread);
1718  if (err) {
1719  throw cms::Exception("FastTimerService") << "ThreadGuard key creation failed: " << ::strerror(err);
1720  }
1721 }
static void retire_thread(void *t)

◆ ~ThreadGuard()

FastTimerService::ThreadGuard::~ThreadGuard ( )
default

Member Function Documentation

◆ finalize()

void FastTimerService::ThreadGuard::finalize ( void  )

Definition at line 1755 of file FastTimerService.cc.

References AlCaHLTBitMon_ParallelJobs::p.

1755  {
1756  for (auto& p : thread_resources_) {
1757  auto expected = true;
1758  if (p->live_.compare_exchange_strong(expected, false)) {
1759  p->measurement_.measure_and_accumulate(p->resource_);
1760  }
1761  }
1762 }
tbb::concurrent_vector< std::shared_ptr< specific_t > > thread_resources_

◆ ptr()

std::shared_ptr< FastTimerService::ThreadGuard::specific_t > * FastTimerService::ThreadGuard::ptr ( void *  p)
static

Definition at line 1739 of file FastTimerService.cc.

References AlCaHLTBitMon_ParallelJobs::p.

1739  {
1740  return static_cast<std::shared_ptr<specific_t>*>(p);
1741 }

◆ register_thread()

bool FastTimerService::ThreadGuard::register_thread ( FastTimerService::AtomicResources r)

Definition at line 1724 of file FastTimerService.cc.

References submitPVResolutionJobs::err, Exception, AlCaHLTBitMon_ParallelJobs::p, createTree::pp, and alignCSCRings::r.

Referenced by FastTimerService::on_scheduler_entry().

1724  {
1725  auto ptr = ::pthread_getspecific(key_);
1726 
1727  if (not ptr) {
1728  auto p = thread_resources_.emplace_back(std::make_shared<specific_t>(r));
1729  auto pp = new std::shared_ptr<specific_t>(*p);
1730  auto err = ::pthread_setspecific(key_, pp);
1731  if (err) {
1732  throw cms::Exception("FastTimerService") << "ThreadGuard pthread_setspecific failed: " << ::strerror(err);
1733  }
1734  return true;
1735  }
1736  return false;
1737 }
static std::shared_ptr< specific_t > * ptr(void *p)
tbb::concurrent_vector< std::shared_ptr< specific_t > > thread_resources_

◆ retire_thread()

void FastTimerService::ThreadGuard::retire_thread ( void *  t)
static

Definition at line 1744 of file FastTimerService.cc.

References AlCaHLTBitMon_ParallelJobs::p.

Referenced by ThreadGuard().

1744  {
1745  auto ps = ptr(p);
1746  auto expected = true;
1747  if ((*ps)->live_.compare_exchange_strong(expected, false)) {
1748  // account any resources used or freed by the thread before leaving the TBB pool
1749  (*ps)->measurement_.measure_and_accumulate((*ps)->resource_);
1750  }
1751  delete ps;
1752 }
static std::shared_ptr< specific_t > * ptr(void *p)

◆ thread()

FastTimerService::Measurement & FastTimerService::ThreadGuard::thread ( )

Definition at line 1764 of file FastTimerService.cc.

Referenced by FastTimerService::thread().

1764  {
1765  return (*ptr(::pthread_getspecific(key_)))->measurement_;
1766 }
static std::shared_ptr< specific_t > * ptr(void *p)

Member Data Documentation

◆ key_

pthread_key_t FastTimerService::ThreadGuard::key_

Definition at line 487 of file FastTimerService.h.

Referenced by ThreadGuard().

◆ thread_resources_

tbb::concurrent_vector<std::shared_ptr<specific_t> > FastTimerService::ThreadGuard::thread_resources_

Definition at line 486 of file FastTimerService.h.