summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-10 23:13:17 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-10 23:13:17 +0000
commitfd8416857ba5f783f74a1855c46ee51c8ef924a3 (patch)
treeb3969209d45e39d17399c6cc5e10bcf37ebbfe75
parent72a5e654a1ab2fd64f51a1d68ef38fca4fbfbb9f (diff)
downloadATCD-fd8416857ba5f783f74a1855c46ee51c8ef924a3.tar.gz
ChangeLogTag: Tue Jun 10 19:10:02 2003 Pradeep Gore <pradeep@oomworks.com>
-rw-r--r--TAO/ChangeLog12
-rw-r--r--TAO/orbsvcs/Notify_Service/Notify_Service.cpp5
2 files changed, 14 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index ffee9d5fae7..f98bf0359ce 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,8 +1,16 @@
+Tue Jun 10 19:10:02 2003 Pradeep Gore <pradeep@oomworks.com>
+
+ * orbsvcs/orbsvcs/Notify_Service/Notify_Service.cpp:
+ Activate worker thread at lowest avialable priority.
+
Tue Jun 10 13:23:57 2003 Pradeep Gore <pradeep@oomworks.com>
* orbsvcs/tests/Notify/performance-tests/scripts/*.conf:
Changed to use the continuous priority model.
+ * orbsvcs/orbsvcs/Makefile.CosNotification:
+ Updated
+
Sun Jun 8 19:53:04 2003 Pradeep Gore <pradeep@oomworks.com>
* orbsvcs/orbsvcs/Notify/AdminProperties.cpp:
@@ -377,7 +385,7 @@ Sun Jun 8 19:53:04 2003 Pradeep Gore <pradeep@oomworks.com>
* orbsvcs/tests/Notify/Lanes/supplier.conf:
* orbsvcs/tests/Notify/Lanes/consumer.conf:
-
+
Corrected the Lane info set in the filter.
* POA_Helper.cpp:
@@ -385,7 +393,7 @@ Sun Jun 8 19:53:04 2003 Pradeep Gore <pradeep@oomworks.com>
* RT_POA_Helper.h:
Added method <get_unique_id> to generate unique POA names.
-
+
Tue Jun 03 07:52:12 2003 Simon McQueen <sm@prismtechnologies.com>
* TAO version 1.3.2 released.
diff --git a/TAO/orbsvcs/Notify_Service/Notify_Service.cpp b/TAO/orbsvcs/Notify_Service/Notify_Service.cpp
index 2dcf4b70e0f..5930f8a096c 100644
--- a/TAO/orbsvcs/Notify_Service/Notify_Service.cpp
+++ b/TAO/orbsvcs/Notify_Service/Notify_Service.cpp
@@ -108,8 +108,11 @@ TAO_Notify_Service_Driver::init (int argc, ACE_TCHAR *argv[]
THR_JOINABLE |
this->orb_->orb_core ()->orb_params ()->thread_creation_flags ();
+ int priority = ACE_Sched_Params::priority_min (this->orb_->orb_core ()->orb_params ()->sched_policy ()
+ , this->orb_->orb_core ()->orb_params ()->scope_policy ());
+
if (worker_.activate (flags,
- this->nthreads_) != 0)
+ this->nthreads_, 0, priority) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Cannot activate client threads\n"), -1);
}