summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-02-06 16:35:25 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-02-06 16:35:25 +0000
commit18fc08bdc9eeeacc22401aeeeaa44833c1ed293f (patch)
tree3319a5d3b98b6efd1eced239c2139e1bf82bd315
parent730de6a9edfd5dd710d508910363b06b61c7319c (diff)
downloadATCD-18fc08bdc9eeeacc22401aeeeaa44833c1ed293f.tar.gz
ChangeLogTag:Fri Feb 6 10:48:07 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Roundtrip.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index b4c4ed81a8a..84f9e566a29 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Fri Feb 6 10:48:07 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * performance-tests/Sequence_Latency/Thread_Per_Connection/Roundtrip.cpp:
+ The shutdown () on the ORB is invoked with a value of 1.
+ This should fix the vague crash in one of the builds.
+
Fri Feb 6 09:32:16 2004 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/RTEventLogAdmin.mpc:
diff --git a/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Roundtrip.cpp b/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Roundtrip.cpp
index 74274ddbab5..19a45782549 100644
--- a/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Roundtrip.cpp
+++ b/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Roundtrip.cpp
@@ -68,5 +68,5 @@ void
Roundtrip::shutdown (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown (1 ACE_ENV_ARG_PARAMETER);
}