summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2002-12-18 13:11:12 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2002-12-18 13:11:12 +0000
commit17d4effdad5f9b0f767e0b3d0efbd5231969fc43 (patch)
tree8f1da42406aefc20417b12bbe69146ca32516d24
parent667dd6c05744b0bc2af705d5bf2f50c50b0a0c1e (diff)
downloadATCD-17d4effdad5f9b0f767e0b3d0efbd5231969fc43.tar.gz
ChangeLogTag:Wed Dec 18 05:42:52 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/High_Res_Timer.cpp3
3 files changed, 14 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b0a3eaeb7f..79778d9e475 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Dec 18 05:42:52 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
+
+ * ace/High_Res_Timer.cpp (global_scale_factor): The INTEL compiler
+ can also set the global scale factor. Thanks to Chris Kohlhoff
+ for reporting this.
+
Tue Dec 17 11:22:31 2002 Phil Mesnier <mesnier_p@ociweb.com>
* ace/Codeset_IBM1047.h:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 0b0a3eaeb7f..79778d9e475 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Wed Dec 18 05:42:52 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
+
+ * ace/High_Res_Timer.cpp (global_scale_factor): The INTEL compiler
+ can also set the global scale factor. Thanks to Chris Kohlhoff
+ for reporting this.
+
Tue Dec 17 11:22:31 2002 Phil Mesnier <mesnier_p@ociweb.com>
* ace/Codeset_IBM1047.h:
diff --git a/ace/High_Res_Timer.cpp b/ace/High_Res_Timer.cpp
index fb4d0b0501f..4c2b3449263 100644
--- a/ace/High_Res_Timer.cpp
+++ b/ace/High_Res_Timer.cpp
@@ -172,7 +172,8 @@ ACE_High_Res_Timer::global_scale_factor (void)
defined (ACE_HAS_PENTIUM) || defined (ACE_HAS_ALPHA_TIMER)) && \
!defined (ACE_HAS_HI_RES_TIMER) && \
((defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) || \
- defined (ghs) || defined (__GNUG__) || defined (__KCC))
+ defined (ghs) || defined (__GNUG__) || defined (__KCC) || \
+ defined (__INTEL_COMPILER))
// Check if the global scale factor needs to be set, and do if so.
if (ACE_High_Res_Timer::global_scale_factor_status_ == 0)
{