summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2001-03-21 22:32:07 +0000
committerSteve Huston <shuston@riverace.com>2001-03-21 22:32:07 +0000
commit3e32a701248525f811ddbbd69d70aa4fa75206d1 (patch)
tree93d32b23430f5b492c5d3519e72ddf778a68f5b0
parent8ecf28a92947f898f2d6c74e3e814617959b2de4 (diff)
downloadATCD-3e32a701248525f811ddbbd69d70aa4fa75206d1.tar.gz
ChangeLogTag:Wed Mar 21 17:28:26 2001 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog18
-rw-r--r--ChangeLogs/ChangeLog-02a18
-rw-r--r--ChangeLogs/ChangeLog-03a18
-rw-r--r--ace/Message_Queue.h3
-rw-r--r--ace/Message_Queue_T.h4
5 files changed, 58 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 4fcc5c14a32..9aa48e55afc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+Wed Mar 21 17:28:26 2001 Steve Huston <shuston@riverace.com>
+
+ * ace/Message_Queue.h:
+ * ace/Message_Queue_T.h: Moved definition of typedef for
+ ACE_DEFAULT_MESSAGE_QUEUE_TYPE from Message_Queue.h to
+ Message_Queue_T.h, just after defining ACE_Message_Queue<>.
+ Fixes the case where Message_Queue_T.h is included first,
+ it includes Message_Queue.h before ACE_Message_Queue<> is
+ defined, and that breaks the compile. IBM C/C++ hit this.
+
+Wed Mar 21 16:42:19 2001 Steve Huston <shuston@riverace.com>
+
+ * bin/auto_compile: Added an option: -notao to ignore the TAO aspects
+ of the non-configurable things, like looking at the TAO/ChangeLog.
+ Also, now looks for auto_run_tests.lst in the $BUILD/bin directory,
+ not the $MODULE/bin directory - this allows some builds to specify
+ their own lists.
+
Wed Mar 21 16:00:56 2001 Nanbor Wang <nanbor@cs.wustl.edu>
The followings are contributions from Scott Snyder
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 4fcc5c14a32..9aa48e55afc 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,21 @@
+Wed Mar 21 17:28:26 2001 Steve Huston <shuston@riverace.com>
+
+ * ace/Message_Queue.h:
+ * ace/Message_Queue_T.h: Moved definition of typedef for
+ ACE_DEFAULT_MESSAGE_QUEUE_TYPE from Message_Queue.h to
+ Message_Queue_T.h, just after defining ACE_Message_Queue<>.
+ Fixes the case where Message_Queue_T.h is included first,
+ it includes Message_Queue.h before ACE_Message_Queue<> is
+ defined, and that breaks the compile. IBM C/C++ hit this.
+
+Wed Mar 21 16:42:19 2001 Steve Huston <shuston@riverace.com>
+
+ * bin/auto_compile: Added an option: -notao to ignore the TAO aspects
+ of the non-configurable things, like looking at the TAO/ChangeLog.
+ Also, now looks for auto_run_tests.lst in the $BUILD/bin directory,
+ not the $MODULE/bin directory - this allows some builds to specify
+ their own lists.
+
Wed Mar 21 16:00:56 2001 Nanbor Wang <nanbor@cs.wustl.edu>
The followings are contributions from Scott Snyder
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 4fcc5c14a32..9aa48e55afc 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,21 @@
+Wed Mar 21 17:28:26 2001 Steve Huston <shuston@riverace.com>
+
+ * ace/Message_Queue.h:
+ * ace/Message_Queue_T.h: Moved definition of typedef for
+ ACE_DEFAULT_MESSAGE_QUEUE_TYPE from Message_Queue.h to
+ Message_Queue_T.h, just after defining ACE_Message_Queue<>.
+ Fixes the case where Message_Queue_T.h is included first,
+ it includes Message_Queue.h before ACE_Message_Queue<> is
+ defined, and that breaks the compile. IBM C/C++ hit this.
+
+Wed Mar 21 16:42:19 2001 Steve Huston <shuston@riverace.com>
+
+ * bin/auto_compile: Added an option: -notao to ignore the TAO aspects
+ of the non-configurable things, like looking at the TAO/ChangeLog.
+ Also, now looks for auto_run_tests.lst in the $BUILD/bin directory,
+ not the $MODULE/bin directory - this allows some builds to specify
+ their own lists.
+
Wed Mar 21 16:00:56 2001 Nanbor Wang <nanbor@cs.wustl.edu>
The followings are contributions from Scott Snyder
diff --git a/ace/Message_Queue.h b/ace/Message_Queue.h
index 92ff36a3b58..6e2a7f6aab1 100644
--- a/ace/Message_Queue.h
+++ b/ace/Message_Queue.h
@@ -182,9 +182,6 @@ private:
// Include the templates here.
#include "ace/Message_Queue_T.h"
-// This typedef is used to get around a compiler bug in g++/vxworks.
-typedef ACE_Message_Queue<ACE_SYNCH> ACE_DEFAULT_MESSAGE_QUEUE_TYPE;
-
#if defined (VXWORKS)
# include /**/ <msgQLib.h>
diff --git a/ace/Message_Queue_T.h b/ace/Message_Queue_T.h
index 62333b3614b..f1b86423ee0 100644
--- a/ace/Message_Queue_T.h
+++ b/ace/Message_Queue_T.h
@@ -409,6 +409,10 @@ private:
ACE_UNIMPLEMENTED_FUNC (ACE_Message_Queue (const ACE_Message_Queue<ACE_SYNCH_USE> &))
};
+// This typedef is used to get around a compiler bug in g++/vxworks.
+typedef ACE_Message_Queue<ACE_SYNCH> ACE_DEFAULT_MESSAGE_QUEUE_TYPE;
+
+
/**
* @class ACE_Message_Queue_Iterator
*