summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-26 01:44:13 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-26 01:44:13 +0000
commiteeb95d3062ea649e7bd5591b3118d06b2edca025 (patch)
treefedf2d90c02a0473f5c145a8443523f5cf17970c
parenteb7b1105a68a4af49cd3ceb9bc65a580928e986e (diff)
downloadATCD-eeb95d3062ea649e7bd5591b3118d06b2edca025.tar.gz
Minor changes.
-rw-r--r--TAO/tao/RTCORBA/RT_ORBInitializer.cpp6
-rw-r--r--TAO/threadpool-changes4
2 files changed, 7 insertions, 3 deletions
diff --git a/TAO/tao/RTCORBA/RT_ORBInitializer.cpp b/TAO/tao/RTCORBA/RT_ORBInitializer.cpp
index 4c2e01ea6ca..d7246ffd098 100644
--- a/TAO/tao/RTCORBA/RT_ORBInitializer.cpp
+++ b/TAO/tao/RTCORBA/RT_ORBInitializer.cpp
@@ -81,11 +81,11 @@ TAO_RT_ORBInitializer::pre_init (
(TAO_ServerProtocolPolicy::hook);
// Conversion.
- long sched_policy = SCHED_OTHER;
+ long sched_policy = ACE_SCHED_OTHER;
if (this->sched_policy_ == THR_SCHED_FIFO)
- sched_policy = SCHED_FIFO;
+ sched_policy = ACE_SCHED_FIFO;
else if (this->sched_policy_ == THR_SCHED_RR)
- sched_policy = SCHED_RR;
+ sched_policy = ACE_SCHED_RR;
// Create the initial priority mapping instance.
TAO_Priority_Mapping *pm;
diff --git a/TAO/threadpool-changes b/TAO/threadpool-changes
index 58b4926b669..a989a4f1f00 100644
--- a/TAO/threadpool-changes
+++ b/TAO/threadpool-changes
@@ -902,3 +902,7 @@ Fri Aug 24 18:08:37 2001 Irfan Pyarali <irfan@cs.wustl.edu>
* ACE_ROOT/ace/OS.h: THR_SCOPE_PROCESS and THR_SCOPE_SYSTEM
were not defined for NT. Added them.
+
+ * ACE_ROOT/bin/auto_run_tests.lst: Added new RTCORBA tests.
+ Removed Minimum CORBA dependency on these tests.
+