summaryrefslogtreecommitdiff
path: root/ace/Profile_Timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Profile_Timer.cpp')
-rw-r--r--ace/Profile_Timer.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/ace/Profile_Timer.cpp b/ace/Profile_Timer.cpp
index cbff43fe3c8..c99f9282c96 100644
--- a/ace/Profile_Timer.cpp
+++ b/ace/Profile_Timer.cpp
@@ -268,18 +268,8 @@ ACE_Profile_Timer::elapsed_time (ACE_Elapsed_Time &et)
et.real_time = (__int64) delta_t / (double) ACE_ONE_SECOND_IN_NSECS;
-# if defined (ACE_HAS_GETRUSAGE)
- ACE_Time_Value atv = ACE_Time_Value (this->end_usage_.ru_utime)
- - ACE_Time_Value (this->begin_usage_.ru_utime);
- et.user_time = atv.sec () + ((double) atv.usec ()) / ACE_ONE_SECOND_IN_USECS;
-
- atv = ACE_Time_Value (this->end_usage_.ru_stime)
- - ACE_Time_Value (this->begin_usage_.ru_stime);
- et.system_time = atv.sec () + ((double) atv.usec ()) / ACE_ONE_SECOND_IN_USECS;
-# else /* ACE_HAS_GETRUSAGE */
et.user_time = 0;
et.system_time = 0;
-# endif /* ACE_HAS_GETRUSAGE */
return 0;
}