summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Segment_Timer/Segment_Timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/Segment_Timer/Segment_Timer.cpp')
-rw-r--r--TAO/CIAO/tools/Segment_Timer/Segment_Timer.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/TAO/CIAO/tools/Segment_Timer/Segment_Timer.cpp b/TAO/CIAO/tools/Segment_Timer/Segment_Timer.cpp
deleted file mode 100644
index ffdfdbe9b46..00000000000
--- a/TAO/CIAO/tools/Segment_Timer/Segment_Timer.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-// $Id$
-
-#include "Segment_Timer.h"
-
-Segment_Timer segment_timers[MAX_TIMERS];
-
-const char* Static_Config_Timer_Descriptions[] =
- {
- "Create Home",
- "Create Container",
- "Create Component",
- "Register Component",
- "Create Connection",
- "Total Assembly time",
- "Create Comp Server"
- };
-
-bool Segment_Timer::dump_flag_ = false;
-
-void Segment_Timer::dump (int index)
-{
- ACE_DEBUG ((LM_DEBUG, "%s\n======================\n",
- Static_Config_Timer_Descriptions[index]));
-
- for (int i=0; i<total_recorded_; ++i)
- {
- //ACE_Time_Value tv;
- //this->hrtime_to_tv (tv, recorded_times_[i]);
- //ACE_DEBUG ((LM_DEBUG, "%f msec \n", recorded_times_[i]/1000000));
- }
-}