summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-23 03:17:47 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-23 03:17:47 +0000
commit4d9d1285a12388997a16f008d6617aea12b63f40 (patch)
treeb751a066ada47c07daea7aa85683676cb712d32a
parentc107271c04f09b243e52d3aa954a4ef0b8556c70 (diff)
downloadATCD-4d9d1285a12388997a16f008d6617aea12b63f40.tar.gz
ChangeLogTag:Sat May 22 22:16:57 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog-99c5
-rw-r--r--TAO/orbsvcs/tests/EC_Throughput/ECT_Throughput.cpp4
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index e3df3d23110..cbf6e52a263 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,8 @@
+Sat May 22 22:16:57 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * orbsvcs/tests/EC_Throughput/ECT_Throughput.cpp:
+ The busy_hwm should be set in the attributes now.
+
Sat May 22 18:43:00 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* orbsvcs/orbsvcs.dsw:
diff --git a/TAO/orbsvcs/tests/EC_Throughput/ECT_Throughput.cpp b/TAO/orbsvcs/tests/EC_Throughput/ECT_Throughput.cpp
index a1053859641..3381064c357 100644
--- a/TAO/orbsvcs/tests/EC_Throughput/ECT_Throughput.cpp
+++ b/TAO/orbsvcs/tests/EC_Throughput/ECT_Throughput.cpp
@@ -242,9 +242,11 @@ ECT_Throughput::run (int argc, char* argv[])
{
TAO_EC_Event_Channel_Attributes attr (root_poa.in (),
root_poa.in ());
+ attr.busy_hwm = this->ec_concurrency_hwm_;
+ attr.max_write_delay = this->ec_concurrency_hwm_;
+
TAO_EC_Event_Channel *ec =
new TAO_EC_Event_Channel (attr);
- ec->consumer_admin ()->busy_hwm (this->ec_concurrency_hwm_);
ec->activate (TAO_TRY_ENV);
TAO_CHECK_ENV;