XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
evt_gcc.cpp
Go to the documentation of this file.
1 
6 extern "C" {
7 
8 
9  void __xtd_EventEnter(const char * fn);
10  void __xtd_EventLeave();
11 
12 
13  // cppcheck-suppress unusedFunction
14  void __cyg_profile_func_enter(void *, void * /*call_site*/){
15  __xtd_EventEnter("");
16  }
17 
18  // cppcheck-suppress unusedFunction
19  void __cyg_profile_func_exit(void *, void */*call_site*/){
20  __xtd_EventLeave();
21  }
22 }