summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Totten <tottens@users.noreply.github.com>2003-10-21 23:22:28 +0000
committerSteve Totten <tottens@users.noreply.github.com>2003-10-21 23:22:28 +0000
commit4f4f61f5e7e7b6a231741956a9aa651285e088d8 (patch)
tree823f379eee2f64ac30f05f34aad3791ed1b7c2f3
parent53924e27e31b7286a5c1b37cd175beb7768b98be (diff)
downloadATCD-4f4f61f5e7e7b6a231741956a9aa651285e088d8.tar.gz
ChangeLogTag: Fri Oct 17 11:26:25 2003 Steve Totten <totten_s@ociweb.com>
-rw-r--r--TAO/ChangeLog32
1 files changed, 26 insertions, 6 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 4d7799fa05c..771ecf9cfb7 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -12,11 +12,12 @@ Tue Oct 21 09:49:51 2003 Dale Wilson <wilson_d@ociweb.com>
* orbsvcs/orbsvcs/PortableGroup.idl:
* orbsvcs/orbsvcs/PortableGroup/PG_FactoryRegistry.h:
* orbsvcs/orbsvcs/PortableGroup/PG_FactoryRegistry.cpp:
- Modify FactoryRegistry interface to register factories by role, not by type
-
+ Modify FactoryRegistry interface to register factories by
+ role, not by type
* orbsvcs/tests/FT_App/FT_App.mpc:
- remove unneeded dependancies for ft_client. {ft_client is !NOT! JUnit.}
+ remove unneeded dependancies for ft_client. {ft_client is
+ !NOT! JUnit.}
* orbsvcs/tests/FT_App/FT_ReplicaFactory_i.h:
* orbsvcs/tests/FT_App/FT_ReplicaFactory_i.cpp:
@@ -29,15 +30,34 @@ Tue Oct 21 09:49:51 2003 Dale Wilson <wilson_d@ociweb.com>
* orbsvcs/tests/FT_App/TAO_Object_Group_Creator.cpp:
* orbsvcs/tests/FT_App/run_test_notifier.pl:
* orbsvcs/tests/FT_App/run_test_rmregistry.pl:
- Support the "roles" concept. i.e. distinguish between the interface implemented
- by a replica (its type_id) and its capabilities and purpose (its role.)
+ Support the "roles" concept. i.e. distinguish between the
+ interface implemented by a replica (its type_id) and its
+ capabilities and purpose (its role.)
* orbsvcs/tests/FaultTolerance/IOGR/Client_i.h:
add /**/ to pre.h and post.h includes
-
These changes were made in the oci_haft branch.
+Fri Oct 17 11:26:25 2003 Steve Totten <totten_s@ociweb.com>
+
+ * orbsvcs/FT_ReplicationManager/FT_ReplicationManager.cpp:
+ * orbsvcs/FT_ReplicationManager/FT_ReplicationManager.h:
+ Improved the implementation of the shutdown() operation.
+ Instead of directly shutting down the ORB, it sets a quit
+ flag that is returned by idle() the next time it is called
+ from TAO::Utils::Server_Main<>::run(). That way, the
+ Replication Manager shuts down in a nice clean fashion.
+
+ * orbsvcs/tests/FT_App/FT_App.mpc:
+ * orbsvcs/tests/FT_App/FT_ReplicationManagerController.cpp:
+ Added a simple client to control the Replication Manager.
+ Right now, all it can do is shut it down.
+
+ * orbsvcs/tests/FT_App/run_test_replication_mgr.pl:
+ Shut down the Replication Manager to cleanly end the test.
+
+ These changes were made in the oci_haft branch.
Thu Oct 16 18:16:07 2003 Steve Totten <totten_s@ociweb.com>