summaryrefslogtreecommitdiff
path: root/ACE/ace/High_Res_Timer.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-05-16 06:43:51 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-05-16 06:43:51 +0000
commitb3a5d4bbe0083f324d995b23c8bc8bfbd2bd5582 (patch)
tree5fcfd51254a3768fa9b34b570981b4fc70302d26 /ACE/ace/High_Res_Timer.inl
parentfe3840d122dd8b5e00228c7630521e4f4cd98190 (diff)
downloadATCD-b3a5d4bbe0083f324d995b23c8bc8bfbd2bd5582.tar.gz
Wed May 16 06:42:45 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Basic_Types.h: * ace/Basic_Types.cpp: * ace/Functor.inl: * ace/High_Res_Timer.inl: * ace/OS_NS_time.h: * ace/OS_NS_time.inl: * tests/Basic_Types_Test.cpp: * tests/Bug_2434_Regression_Test.cpp: * tests/Time_Value_Test.cpp: More cleanup due to removal of NSK * ace/Basic_Types.inl: Removed this file.
Diffstat (limited to 'ACE/ace/High_Res_Timer.inl')
-rw-r--r--ACE/ace/High_Res_Timer.inl1
1 files changed, 0 insertions, 1 deletions
diff --git a/ACE/ace/High_Res_Timer.inl b/ACE/ace/High_Res_Timer.inl
index 848d268ebe8..1a07bfa5168 100644
--- a/ACE/ace/High_Res_Timer.inl
+++ b/ACE/ace/High_Res_Timer.inl
@@ -28,7 +28,6 @@ ACE_High_Res_Timer::hrtime_to_tv (ACE_Time_Value &tv,
tv.sec ((time_t) (hrt / (ACE_UINT32) ACE_HR_SCALE_CONVERSION /
global_scale_factor ()));
- // Calculate usec in a manner that's compatible with ACE_U_LongLong.
// hrt = (tv.sec * ACE_ONE_SECOND_IN_USECS + tv.usec) * global_scale_factor_
// tv.usec = hrt / global_scale_factor_ - tv.sec * ACE_ONE_SECOND_IN_USECS
// That first term will be lossy, so factor out global_scale_factor_: