XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
event_trace.cpp
Go to the documentation of this file.
1 
5 //#include <xtd/xtd.hpp>
7 #include <string>
8 #include <stack>
9 
10 namespace{
11  xtd::concurrent::hash_map<void*,std::string> _FunctionNames;
12  thread_local std::stack<std::string> _ThreadStack;
13  thread_local bool _InTrace = false;
14 }
15 
16 extern "C"{
17  void __xtd_EventEnter(void * ){
18  if (_InTrace){
19  return;
20  }
21  _InTrace = true;
22  _InTrace = false;
23  }
24 
25  void __xtd_EventLeave(void * ){
26  if (_InTrace){
27  return;
28  }
29  _InTrace = true;
30  _InTrace = false;
31  }
32 }
concurrently insert, query and delete items in an unordered hash map