OmniSciDB  72c90bc290
 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 795 of file Logger.cpp.

Member Function Documentation

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

Definition at line 796 of file Logger.cpp.

References logger::g_duration_tree_map.

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

Definition at line 802 of file Logger.cpp.

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

Definition at line 803 of file Logger.cpp.

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

803  {
804  for (auto const& duration_tree_node : duration_tree.durations()) {
805  apply_visitor(*this, duration_tree_node);
806  }
807  g_duration_tree_map.erase(duration_tree.thread_id_);
808  }
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: