summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuangming <huangminghuang@users.noreply.github.com>2003-10-20 03:03:38 +0000
committerhuangming <huangminghuang@users.noreply.github.com>2003-10-20 03:03:38 +0000
commita1f38cbbb89120719a78b99aa44db3f1d06c87f1 (patch)
tree74558de55fd0d50ef67f65aa79d05c5311d742c5
parent2b09fafa8a22f2bd8fcdfe2b9797cf7c5477f485 (diff)
downloadATCD-a1f38cbbb89120719a78b99aa44db3f1d06c87f1.tar.gz
ChangeLogTag: Sun Oct 19 21:48:09 2003 Huang-Ming Huang <hh1@cse.wustl.edu>
-rw-r--r--TAO/ChangeLog20
-rw-r--r--TAO/docs/releasenotes/ftrt_ec.html8
-rw-r--r--TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/ClientORB/FTRT_ClientORB_Loader.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Replication_Service.cpp2
6 files changed, 21 insertions, 15 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 6e9a5711910..1fea91979c1 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,19 +1,29 @@
+Sun Oct 19 21:48:09 2003 Huang-Ming Huang <hh1@cse.wustl.edu>
+
+ * orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp:
+ * orbsvcs/orbsvcs/FtRtEvent/EventChannel/Replication_Service.cpp:
+ * orbsvcs/orbsvcs/FtRtEvent/ClientORB/FTRT_ClientORB_Loader.cpp:
+ * orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp
+ Fixed fuzz errors.
+
+ * docs/releasenotes/ftrt_ec.html: minor updates.
+
Sun Oct 19 18:25:20 2003 Venkita Subramonian <venkita@cs.wustl.edu>
- * orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp:
+ * orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp:
* tests/OBV/Supports/Supports_Test_impl.cpp: Fixed unused
ACE_ENV_ARG warnings.
Sun Oct 19 17:11:21 2003 Venkita Subramonian <venkita@cs.wustl.edu>
- * orbsvcs/FTRT_Event_Service/Readme:
+ * orbsvcs/FTRT_Event_Service/Readme:
* orbsvcs/orbsvcs/RTCosScheduling/README: Deleted these files and
moved them as part of release notes. See below.
- * docs/releasenotes/index.html:
- * docs/releasenotes/rtc10_sched.html:
+ * docs/releasenotes/index.html:
+ * docs/releasenotes/rtc10_sched.html:
* docs/releasenotes/ftrt_ec.html: Added these to release notes.
-
+
Sun Oct 19 15:46:42 2003 Huang-Ming Huang <hh1@cse.wustl.edu>
* orbsvcs/orbsvcs/RTCosScheduling_Static.dsp:
diff --git a/TAO/docs/releasenotes/ftrt_ec.html b/TAO/docs/releasenotes/ftrt_ec.html
index e43008e4084..f4624686fe4 100644
--- a/TAO/docs/releasenotes/ftrt_ec.html
+++ b/TAO/docs/releasenotes/ftrt_ec.html
@@ -30,7 +30,7 @@ event channels is the events which are yet to be delivered to the consumers.
Those events are hard to replicate because the time scale is too small.
They might be delivered late or out of scope if we tried to replicate the
events. However, the subscription information occurs at a suitable
-<br>time scale for replication, and is in fact more essential for the delivery
+time scale for replication, and is in fact more essential for the delivery
of events since it establishes a kind of connectivity from suppliers to
consumers. Therefore, we only replicate the subscriptions
<p>Once the primary receives the subscription requests from the clients,
@@ -74,18 +74,20 @@ Quick start:</h3>
&nbsp; Run the applications as follows:
<br>&nbsp;
<p>&nbsp; 1. Start Naming_Service
+<p>
<br>&nbsp;&nbsp; $ $TAO_ROOT/orbsvcs/Naming_Service/Naming_Service -m 1
<br>&nbsp;&nbsp;&nbsp;&nbsp; or you can use the shell script NameService
in this directory to start it.
<p>&nbsp; 2. Start the ftrt_eventservice. Use the "-p" option to start
it as a primary and
<br>&nbsp;&nbsp;&nbsp;&nbsp; use the "-j" option to start it as a backup.
-<p>&nbsp; $ ./ftec -p
+<p>&nbsp; $ cd $TAO_ROOT/orbsvcs/FTRT_Event_Service
+<br>&nbsp; $ ./ftec -p
<br>&nbsp; $ ./ftec -j
<br>&nbsp; $ ./ftec -j
<br>&nbsp;
<p>&nbsp; 3. Start the consumer and supplier.
-<br>&nbsp; $ ./consumer
+<p>&nbsp; $ ./consumer
<br>&nbsp; $ ./supplier
<br>&nbsp;
<h3>
diff --git a/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp b/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp
index 16c575ff06b..e866050e703 100644
--- a/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp
+++ b/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp
@@ -91,7 +91,7 @@ CORBA::Object_ptr EventChannelFactory_i::create_process (
const FT::Criteria & the_criteria,
FT::GenericFactory::FactoryCreationId_out factory_creation_id)
{
- ACE_TRACE("EventChannelFactory_i::create_prcess");
+ ACE_TRACE("EventChannelFactory_i::create_process");
CORBA::Object_ptr result = CORBA::Object::_nil();
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/ClientORB/FTRT_ClientORB_Loader.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/ClientORB/FTRT_ClientORB_Loader.cpp
index 053c1f1832c..60186018b23 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/ClientORB/FTRT_ClientORB_Loader.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/ClientORB/FTRT_ClientORB_Loader.cpp
@@ -23,8 +23,6 @@ namespace TAO_FTRT {
int FTRT_ClientORB_Loader::init (int argc,
ACE_TCHAR* argv[])
{
- ACE_TRACE ("FTRT_ClientORB_Loader::init");
-
static int initialized = 0;
// Only allow initialization once.
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp
index 4eb9b8dde8a..946bd2cc51f 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp
@@ -29,8 +29,6 @@ namespace FTRTEC {
Fault_Detector_Loader::init (int argc,
ACE_TCHAR* argv[])
{
- ACE_TRACE ("Fault_Detector_Loader::init");
-
static int initialized = 0;
// Only allow initialization once.
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Replication_Service.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Replication_Service.cpp
index 3b585271a4b..f472f5c7c9d 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Replication_Service.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Replication_Service.cpp
@@ -35,8 +35,6 @@ namespace FTRTEC
int Replication_Service::init (int argc, ACE_TCHAR* argv[])
{
- ACE_TRACE ("Replication_Service::init");
-
static int initialized = 0;
// Only allow initialization once.