summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-07 10:38:24 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-07 10:38:24 +0000
commit02f97f457c4c6e6e58ff6834c3120723aae76eeb (patch)
tree3f9fd34e1501a221eb572baf8c0a4072b457d603
parent677e45cc32a0d8f8c0f1bb98c7b8e6667a923d75 (diff)
downloadATCD-02f97f457c4c6e6e58ff6834c3120723aae76eeb.tar.gz
ChangeLogTag:Thu Dec 7 02:31:44 2000 Darrell Brunsch <brunsch@uci.edu>
-rw-r--r--ChangeLog12
-rw-r--r--ChangeLogs/ChangeLog-02a12
-rw-r--r--ChangeLogs/ChangeLog-03a12
-rw-r--r--THANKS1
-rw-r--r--ace/config-WinCE.h2
5 files changed, 35 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d56374c7d9..db3b05c2a6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,20 @@
+Thu Dec 7 02:31:44 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ * ace/config-WinCE.h:
+
+ Disabled inlining for SH3 Release configuration. The SH3 compiler
+ has problems with inlined functions (in this case, ACE_OS::dlerror's
+ static variable was staying unresolved). Thanks to Ricardo Chan
+ <ricchan@nortelnetworks.com> for pointing this out to me.
+
Thu Dec 7 03:33:49 2000 Marina Spivak <marina@cs.wustl.edu>
* bin/auto_run_tests.lst:
Added RTCORBA MT test.
-Wed Dec 06 19:52:42 2000 Darrell Brunsch <brunsch@uci.edu>
+Wed Dec 6 19:52:42 2000 Darrell Brunsch <brunsch@uci.edu>
+
* ace/Auto_Ptr.i:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 6d56374c7d9..db3b05c2a6a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,10 +1,20 @@
+Thu Dec 7 02:31:44 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ * ace/config-WinCE.h:
+
+ Disabled inlining for SH3 Release configuration. The SH3 compiler
+ has problems with inlined functions (in this case, ACE_OS::dlerror's
+ static variable was staying unresolved). Thanks to Ricardo Chan
+ <ricchan@nortelnetworks.com> for pointing this out to me.
+
Thu Dec 7 03:33:49 2000 Marina Spivak <marina@cs.wustl.edu>
* bin/auto_run_tests.lst:
Added RTCORBA MT test.
-Wed Dec 06 19:52:42 2000 Darrell Brunsch <brunsch@uci.edu>
+Wed Dec 6 19:52:42 2000 Darrell Brunsch <brunsch@uci.edu>
+
* ace/Auto_Ptr.i:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 6d56374c7d9..db3b05c2a6a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,10 +1,20 @@
+Thu Dec 7 02:31:44 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ * ace/config-WinCE.h:
+
+ Disabled inlining for SH3 Release configuration. The SH3 compiler
+ has problems with inlined functions (in this case, ACE_OS::dlerror's
+ static variable was staying unresolved). Thanks to Ricardo Chan
+ <ricchan@nortelnetworks.com> for pointing this out to me.
+
Thu Dec 7 03:33:49 2000 Marina Spivak <marina@cs.wustl.edu>
* bin/auto_run_tests.lst:
Added RTCORBA MT test.
-Wed Dec 06 19:52:42 2000 Darrell Brunsch <brunsch@uci.edu>
+Wed Dec 6 19:52:42 2000 Darrell Brunsch <brunsch@uci.edu>
+
* ace/Auto_Ptr.i:
diff --git a/THANKS b/THANKS
index f03c3346221..3fecea18760 100644
--- a/THANKS
+++ b/THANKS
@@ -1092,6 +1092,7 @@ Oscar Rodriquez <Oscar.Rodriquez@eln.ericsson.se>
Jonathan Cano <jcano@mmcnet.com>
Decamps Alain <Alain.Decamps@PIDPA.be>
Jon Loeliger <jloeliger@chiaro.com>
+Ricardo Chan <ricchan@nortelnetworks.com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson. Paul devised the recursive Makefile scheme that
diff --git a/ace/config-WinCE.h b/ace/config-WinCE.h
index d997dba8fb6..7c0405df3a6 100644
--- a/ace/config-WinCE.h
+++ b/ace/config-WinCE.h
@@ -69,7 +69,7 @@ typedef void FILE;
// SH3 cross-compiler can't handle inline functions correctly
// (along with other bugs.)
-#if defined (SH3) && defined (DEBUG)
+#if defined (SH3)
#define ACE_LACKS_INLINE_FUNCTIONS
#endif /* SH3 && _DEBUG */