Classes | |
| struct | prof::ProfImp |
| struct | prof::ProfilingStarter |
Functions | |
| string | get_file_extension () |
| string | build_filename () |
Variables | |
| ProfilingStarter | global_prof_starter |
|
|
Definition at line 74 of file Profiler.cpp. References get_file_extension(), and output_filename. Referenced by prof::ProfImp::ProfImp(). 00075 {
00076 ostringstream ost;
00077 //ost << output_filename << getpid();
00078 ost << output_filename << get_file_extension();
00079 return ost.str();
00080 }
|
|
|
Definition at line 65 of file Profiler.cpp. Referenced by build_filename(), and prof::ProfilingStarter::~ProfilingStarter(). 00066 {
00067 char* ext = getenv("PERF_TOOLS_EXT");
00068 if (ext) return ext;
00069 ostringstream ost;
00070 ost << getpid();
00071 return ost.str();
00072 }
|
|
|
Definition at line 72 of file StartProfiler.cpp. |
1.3.9.1