summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-11 15:42:32 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-11 15:42:32 +0000
commit38a79d830088e500c7368a20e31af5374f66e430 (patch)
tree10c6a0a9e1e823a7cd82a8249d5661a9d97c4662
parentf4d68d2b25807b70b70386234ee358d160acc006 (diff)
downloadATCD-38a79d830088e500c7368a20e31af5374f66e430.tar.gz
ChangeLogTag:Sun May 11 10:37:56 2003 Nanbor Wang <nanbor@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog20
-rw-r--r--TAO/docs/rtcorba/features.html5
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/README.txt2
3 files changed, 20 insertions, 7 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 8e3db89c79c..648a8544250 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,13 @@
+Sun May 11 10:37:56 2003 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ Checked in updates that sat in my workspace for a long time.
+
+ * orbsvcs/ImplRepo_Service/README.txt: The ORBInitRef for ImplRepo
+ should refer to ImplRepoService, not ImplRepo_Service.
+
+ * docs/rtcorba/features.html: Added contineous priority mapping,
+ which went amiss in the document.
+
Sun May 11 09:28:39 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* orbsvcs/LoadBalancer/Makefile.LoadManager:
@@ -19,7 +29,7 @@ Sun May 11 09:28:39 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* orbsvcs/tests/Sched_Conf/Makefile:
* orbsvcs/tests/Simple_Naming/Makefile:
* orbsvcs/tests/Time/Makefile: Another set fixes to get static
- builds linking fine.
+ builds linking fine.
Sun May 11 09:26:29 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
@@ -61,7 +71,7 @@ Sat May 10 15:21:10 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* orbsvcs/Scheduling_Service/Makefile:
* orbsvcs/Time_Service/Makefile:
* orbsvcs/tests/Notify/lib/Makefile: A set fixes to get static
- builds linking fine.
+ builds linking fine.
Sat May 10 12:24:32 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
@@ -70,12 +80,12 @@ Sat May 10 12:24:32 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Sat May 10 10:15:45 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * examples/*/Makefile*: More updates.
+ * examples/*/Makefile*: More updates.
Sat May 10 10:06:04 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* examples/POA/*/Makefile*: Updated dependencies. This has been a
- problem in our daily builds for almost a week now.
+ problem in our daily builds for almost a week now.
Fri May 9 16:43:51 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
@@ -87,7 +97,7 @@ Fri May 9 16:43:51 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
class. Decerement the refcount of the profile, if one exists
in the destructor. Thanks to Bertin Colpron
<BColpron@interstarinc.com> for providing this patch and Thomas
- Wiegert <wiegert@schlund.de> for reporting the problem.
+ Wiegert <wiegert@schlund.de> for reporting the problem.
The above checkin is just a workaorund for a more serious
problem with profile managements especially during location
diff --git a/TAO/docs/rtcorba/features.html b/TAO/docs/rtcorba/features.html
index 399f9af8b88..b67dca3ea8f 100644
--- a/TAO/docs/rtcorba/features.html
+++ b/TAO/docs/rtcorba/features.html
@@ -91,7 +91,7 @@ of user-defined mappings.) Config file should contain the following options:</li
<p><tt>static RT_ORB_Loader "-ORBPriorityMapping
<i>mapping_type</i> -ORBSchedPolicy
<i>sched_policy</i>"</tt>
-<p>where valid values for <i>mapping_type</i> are <tt>linear</tt> and <tt>direct,</tt>
+<p>where valid values for <i>mapping_type</i> are <tt>continuous</tt>, <tt>linear</tt> and <tt>direct,</tt>
and<i> </i>valid values for <i>sched_policy</i> are <tt>SCHED_OTHER</tt>,
<tt>SCHED_FIFO</tt>
and <tt>SCHED_RR</tt>.
@@ -112,10 +112,13 @@ below demonstrate how to perform each of these tasks.</li>
<br><tt>TAO::PriorityMappingManager::_narrow (object.in ());</tt>
<p>Overriding priority mapping/policy in effect with another ORB-defined
mapping/policy combination:
+<br><tt>#include "tao/RTCORBA/Continuous_Priority_Mapping.h"</tt>
<br><tt>#include "tao/RTCORBA/Linear_Priority_Mapping.h"</tt>
<br><tt>#include "tao/RTCORBA/Direct_Priority_Mapping.h"</tt>
<br><tt>...</tt>
<p><tt>RTCORBA::PriorityMapping *pm =</tt>
+<br><tt>new TAO_Continuous_Priority_Mapping (policy);</tt>
+<br>or
<br><tt>new TAO_Linear_Priority_Mapping (policy);</tt>
<br>or
<br><tt>new TAO_Direct_Priority_Mapping (policy);</tt>
diff --git a/TAO/orbsvcs/ImplRepo_Service/README.txt b/TAO/orbsvcs/ImplRepo_Service/README.txt
index 191d218c221..c530aeabc5b 100644
--- a/TAO/orbsvcs/ImplRepo_Service/README.txt
+++ b/TAO/orbsvcs/ImplRepo_Service/README.txt
@@ -267,7 +267,7 @@ and updates its database to reflect the new state of the server.
<li>First run the <b>ImplRepo_Service</b>
<em>Example:<code> </code> </em><code> ImplRepo_Service -o locator.ior<br></code>
<li>Run the <b>Activator</b>
- <em>Example:<code> </code> </em><code> ImR_Activator -ORBInitRef ImplRepo_Service=file://locator.ior<br></code>
+ <em>Example:<code> </code> </em><code> ImR_Activator -ORBInitRef ImplRepoService=file://locator.ior<br></code>
@subsection use How is the ImR used?