summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-16 00:56:43 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-02-16 00:56:43 +0000
commit0ca1f2f762ca5ce4b8765898e266f87bc9ef7f86 (patch)
tree98e842eabcbb6e3f024fe896b40466226e08c7eb
parentc11ba3eca6a31fc0eee7674fc7203adff5cdf13d (diff)
downloadATCD-0ca1f2f762ca5ce4b8765898e266f87bc9ef7f86.tar.gz
ChangeLogTag:Tue Feb 15 16:55:16 2000 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a58
-rw-r--r--TAO/orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp8
2 files changed, 36 insertions, 30 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 902b551f42f..09ba401cc32 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Tue Feb 15 16:55:16 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp:
+ I was using the wrong macro, it is TAO_HAS_ORBSVCS_Event2, not
+ ACE_HAS_Event2.
+
Tue Feb 15 08:23:35 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/tests/CosEvent/Basic/Shutdown.cpp:
@@ -15,32 +21,32 @@ Tue Feb 15 08:19:42 2000 Carlos O'Ryan <coryan@uci.edu>
Mon Feb 14 18:13:58 2000 Jeff Parsons <parsons@cs.wustl.edu>
- * TAO_IDL/include/ast_module.h:
- * TAO_IDL/ast/ast_module.cpp:
- * TAO_IDL/be/be_generator.cpp:
- * TAO_IDL/util/utl_scope.cpp:
- Extension of fix below that doesn't depend on order
- of events inside AST_Module constructor body. Also
- removes static variable declared inside AST_Module
- constructor body.
+ * TAO_IDL/include/ast_module.h:
+ * TAO_IDL/ast/ast_module.cpp:
+ * TAO_IDL/be/be_generator.cpp:
+ * TAO_IDL/util/utl_scope.cpp:
+ Extension of fix below that doesn't depend on order
+ of events inside AST_Module constructor body. Also
+ removes static variable declared inside AST_Module
+ constructor body.
Mon Feb 14 13:01:53 2000 Jeff Parsons <parsons@cs.wustl.edu>
- * TAO_IDL/util/utl_scope.cpp:
- In the check for redefinition of a scope immediately
- inside itself, add a check for a null pointer to
- Identifier. This was causing seg faults on many
- platforms.
+ * TAO_IDL/util/utl_scope.cpp:
+ In the check for redefinition of a scope immediately
+ inside itself, add a check for a null pointer to
+ Identifier. This was causing seg faults on many
+ platforms.
Mon Feb 14 10:16:15 2000 Ossama Othman <ossama@uci.edu>
- * tao/Acceptor_Registry.h:
+ * tao/Acceptor_Registry.h:
- Removed inclusion of extraneous headers.
+ Removed inclusion of extraneous headers.
- * tao/Makefile:
+ * tao/Makefile:
- Updated dependencies.
+ Updated dependencies.
Mon Feb 14 08:25:32 2000 Darrell Brunsch <brunsch@uci.edu>
@@ -53,16 +59,16 @@ Mon Feb 14 08:25:32 2000 Darrell Brunsch <brunsch@uci.edu>
Mon Feb 14 02:47:55 2000 Nanbor Wang <nanbor@cs.wustl.edu>
- * tests/Interceptors/server.cpp (main): Changed to activate the
- servant explicitly so it would use the right POA. Thanks to
- Russell L. Carter <rcarter@consys.com> for reporting this.
+ * tests/Interceptors/server.cpp (main): Changed to activate the
+ servant explicitly so it would use the right POA. Thanks to
+ Russell L. Carter <rcarter@consys.com> for reporting this.
Sun Feb 13 11:09:41 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
- * tao/TAO: Added a fini() method so that the TAO_ORB_Manager
- can be instructed not to try to destroy the RootPOA a second
- time. Thanks to Boris Sukholitko <boris@webglide.com> for
- reporting this.
+ * tao/TAO: Added a fini() method so that the TAO_ORB_Manager
+ can be instructed not to try to destroy the RootPOA a second
+ time. Thanks to Boris Sukholitko <boris@webglide.com> for
+ reporting this.
Sat Feb 12 21:06:56 2000 Carlos O'Ryan <coryan@uci.edu>
@@ -368,8 +374,8 @@ Fri Feb 11 13:48:33 2000 Jeff Parsons <parsons@cs.wustl.edu>
unions, valuetypes and exeptions from being
redefined immediately inside their own scope. This
closes out Bugzilla bug #417. Thanks to
- Alia Atlas <akatlas@bbn.com> for sending in an
- example IDL file.
+ Alia Atlas <akatlas@bbn.com> for sending in an
+ example IDL file.
Fri Feb 11 10:22:15 2000 Jeff Parsons <parsons@cs.wustl.edu>
diff --git a/TAO/orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp b/TAO/orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp
index b0c4e7f4faf..49d1db34d70 100644
--- a/TAO/orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp
@@ -721,11 +721,11 @@ ACE_FACTORY_DEFINE (TAO_ORBSVCS, TAO_CEC_Default_Factory)
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-#if !defined(ACE_HAS_Event2)
+#if !defined(TAO_HAS_ORBSVCS_Event2)
template class ACE_Node<ACE_Command_Base*>;
template class ACE_Unbounded_Queue<ACE_Command_Base*>;
template class ACE_Unbounded_Queue_Iterator<ACE_Command_Base*>;
-#endif /* ! ACE_HAS_Event2 */
+#endif /* ! TAO_HAS_ORBSVCS_Event2 */
template class TAO_EC_Proxy_Collection<TAO_CEC_ProxyPushConsumer>;
template class TAO_EC_List_Based_Proxy_Set<TAO_CEC_ProxyPushConsumer>;
@@ -1154,11 +1154,11 @@ template class TAO_EC_Shutdown_Command<
#elif defined(ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#if !defined(ACE_HAS_Event2)
+#if !defined(TAO_ORBSVCS_HAS_Event2)
#pragma instantiate ACE_Node<ACE_Command_Base*>
#pragma instantiate ACE_Unbounded_Queue<ACE_Command_Base*>
#pragma instantiate ACE_Unbounded_Queue_Iterator<ACE_Command_Base*>
-#endif /* ! ACE_HAS_Event2 */
+#endif /* ! TAO_ORBSVCS_HAS_Event2 */
#if defined (ACE_HAS_THREADS)
#endif /* ACE_HAS_THREADS */