OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
logger::EraseDurationTrees Struct Reference

Depth-first search and erase all DurationTrees. Not thread-safe. More...

+ Inheritance diagram for logger::EraseDurationTrees:
+ Collaboration diagram for logger::EraseDurationTrees:

Public Member Functions

void operator() (DurationTreeMap::const_iterator const &itr) const
 
void operator() (Duration const &) const
 
void operator() (DurationTree const &duration_tree) const
 

Detailed Description

Depth-first search and erase all DurationTrees. Not thread-safe.

Definition at line 789 of file Logger.cpp.

Member Function Documentation

void logger::EraseDurationTrees::operator() ( DurationTreeMap::const_iterator const &  itr) const
inline

Definition at line 790 of file Logger.cpp.

References logger::g_duration_tree_map.

790  {
791  for (auto const& duration_tree_node : itr->second->durations()) {
792  apply_visitor(*this, duration_tree_node);
793  }
794  g_duration_tree_map.erase(itr);
795  }
DurationTreeMap g_duration_tree_map
Definition: Logger.cpp:651
void logger::EraseDurationTrees::operator() ( Duration const &  ) const
inline

Definition at line 796 of file Logger.cpp.

796 {}
void logger::EraseDurationTrees::operator() ( DurationTree const &  duration_tree) const
inline

Definition at line 797 of file Logger.cpp.

References logger::DurationTree::durations(), logger::g_duration_tree_map, and logger::DurationTree::thread_id_.

797  {
798  for (auto const& duration_tree_node : duration_tree.durations()) {
799  apply_visitor(*this, duration_tree_node);
800  }
801  g_duration_tree_map.erase(duration_tree.thread_id_);
802  }
DurationTreeMap g_duration_tree_map
Definition: Logger.cpp:651

+ Here is the call graph for this function:


The documentation for this struct was generated from the following file: