summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authormayur <mayur@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-06-10 20:58:25 +0000
committermayur <mayur@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-06-10 20:58:25 +0000
commit971585d740cf3eadbca28eabc46936b41d3bab63 (patch)
treebf7d7a8fa092cae824662120a338a49a19e9a8d9 /TAO
parent6aca8d823116f5ff994d1febf773171225912b7b (diff)
downloadATCD-971585d740cf3eadbca28eabc46936b41d3bab63.tar.gz
Mon Jun 10 13:55:48 2002 Mayur Deshpande <mayur@ics.uci.edu>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a8
-rw-r--r--TAO/performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp2
2 files changed, 9 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 04010a57095..f271474b703 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Mon Jun 10 13:55:48 2002 Mayur Deshpande <mayur@ics.uci.edu>
+
+ * performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp:
+ Oops, I did it again :-) .. forgot to delare the CORBA
+ environemnt variable macro. The builds should be happy now.
+
Mon Jun 10 14:30:18 2002 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/RTPortableServer/RT_Collocation_Resolver.cpp:
@@ -18,7 +24,7 @@ Sun Jun 9 19:16:57 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Fri Jun 7 16:32:17 2002 Mayur Deshpande <mayur@ics.uci.edu>
- * performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp (test_method):
+ * performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp:
Modified RH calls for platforms without native exceptions.
Fri Jun 7 09:26:44 2002 Christopher Kohlhoff <chris@kohlhoff.com>
diff --git a/TAO/performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp b/TAO/performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp
index 68273b75f06..0cab5b52f05 100644
--- a/TAO/performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp
+++ b/TAO/performance-tests/Latency/AMH/Single_Threaded/Roundtrip.cpp
@@ -18,6 +18,7 @@ Roundtrip::test_method (
ACE_THROW_SPEC ((CORBA::SystemException))
{
//ACE_DEBUG ((LM_DEBUG, "Test_Method called\n"));
+ ACE_DECLARE_NEW_CORBA_ENV;
_tao_rh->test_method (send_time ACE_ENV_ARG_PARAMETER);
//ACE_DEBUG ((LM_DEBUG, "RH completed\n"));
}
@@ -28,6 +29,7 @@ Roundtrip::shutdown (
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
+ ACE_DECLARE_NEW_CORBA_ENV;
_tao_rh->shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
}