OmniSciDB  a5dc49c757
 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 797 of file Logger.cpp.

Member Function Documentation

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

Definition at line 798 of file Logger.cpp.

References logger::g_duration_tree_map.

798  {
799  for (auto const& duration_tree_node : itr->second->durations()) {
800  apply_visitor(*this, duration_tree_node);
801  }
802  g_duration_tree_map.erase(itr);
803  }
DurationTreeMap g_duration_tree_map
Definition: Logger.cpp:657
void logger::EraseDurationTrees::operator() ( Duration const &  ) const
inline

Definition at line 804 of file Logger.cpp.

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

Definition at line 805 of file Logger.cpp.

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

805  {
806  for (auto const& duration_tree_node : duration_tree.durations()) {
807  apply_visitor(*this, duration_tree_node);
808  }
809  g_duration_tree_map.erase(duration_tree.thread_id_);
810  }
DurationTreeMap g_duration_tree_map
Definition: Logger.cpp:657

+ Here is the call graph for this function:


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