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 465 of file FastTimerService.h.

Constructor & Destructor Documentation

◆ ThreadGuard()

FastTimerService::ThreadGuard::ThreadGuard ( )

Definition at line 1707 of file FastTimerService.cc.

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

1707  {
1708  auto err = ::pthread_key_create(&key_, retire_thread);
1709  if (err) {
1710  throw cms::Exception("FastTimerService") << "ThreadGuard key creation failed: " << ::strerror(err);
1711  }
1712 }
static void retire_thread(void *t)

◆ ~ThreadGuard()

FastTimerService::ThreadGuard::~ThreadGuard ( )
default

Member Function Documentation

◆ finalize()

void FastTimerService::ThreadGuard::finalize ( void  )

Definition at line 1746 of file FastTimerService.cc.

References AlCaHLTBitMon_ParallelJobs::p.

1746  {
1747  for (auto& p : thread_resources_) {
1748  auto expected = true;
1749  if (p->live_.compare_exchange_strong(expected, false)) {
1750  p->measurement_.measure_and_accumulate(p->resource_);
1751  }
1752  }
1753 }
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 1730 of file FastTimerService.cc.

References AlCaHLTBitMon_ParallelJobs::p.

1730  {
1731  return static_cast<std::shared_ptr<specific_t>*>(p);
1732 }

◆ register_thread()

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

Definition at line 1715 of file FastTimerService.cc.

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

Referenced by FastTimerService::on_scheduler_entry().

1715  {
1716  auto ptr = ::pthread_getspecific(key_);
1717 
1718  if (not ptr) {
1719  auto p = thread_resources_.emplace_back(std::make_shared<specific_t>(r));
1720  auto pp = new std::shared_ptr<specific_t>(*p);
1721  auto err = ::pthread_setspecific(key_, pp);
1722  if (err) {
1723  throw cms::Exception("FastTimerService") << "ThreadGuard pthread_setspecific failed: " << ::strerror(err);
1724  }
1725  return true;
1726  }
1727  return false;
1728 }
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 1735 of file FastTimerService.cc.

References AlCaHLTBitMon_ParallelJobs::p.

Referenced by ThreadGuard().

1735  {
1736  auto ps = ptr(p);
1737  auto expected = true;
1738  if ((*ps)->live_.compare_exchange_strong(expected, false)) {
1739  // account any resources used or freed by the thread before leaving the TBB pool
1740  (*ps)->measurement_.measure_and_accumulate((*ps)->resource_);
1741  }
1742  delete ps;
1743 }
static std::shared_ptr< specific_t > * ptr(void *p)

◆ thread()

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

Definition at line 1755 of file FastTimerService.cc.

Referenced by FastTimerService::thread().

1755  {
1756  return (*ptr(::pthread_getspecific(key_)))->measurement_;
1757 }
static std::shared_ptr< specific_t > * ptr(void *p)

Member Data Documentation

◆ key_

pthread_key_t FastTimerService::ThreadGuard::key_

Definition at line 486 of file FastTimerService.h.

Referenced by ThreadGuard().

◆ thread_resources_

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

Definition at line 485 of file FastTimerService.h.