diff options
author | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-21 20:46:32 +0000 |
---|---|---|
committer | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-21 20:46:32 +0000 |
commit | 8ae74090aa76618a9e6f84047fdbcac945f0eb32 (patch) | |
tree | f383951a9719483d40c73caf7163e65482557324 /TAO/tests/Timed_Buffered_Oneways | |
parent | 169a7f6f2d9310f607bb3f5b27021333b6597989 (diff) | |
download | ATCD-8ae74090aa76618a9e6f84047fdbcac945f0eb32.tar.gz |
ChangeLogTag: Mon May 21 15:39:51 2001 Krishnakumar B <kitty@cs.wustl.edu>
Diffstat (limited to 'TAO/tests/Timed_Buffered_Oneways')
-rw-r--r-- | TAO/tests/Timed_Buffered_Oneways/test_i.cpp | 4 | ||||
-rw-r--r-- | TAO/tests/Timed_Buffered_Oneways/test_i.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Timed_Buffered_Oneways/test_i.cpp b/TAO/tests/Timed_Buffered_Oneways/test_i.cpp index 8e7b52af773..b29dbf3fedf 100644 --- a/TAO/tests/Timed_Buffered_Oneways/test_i.cpp +++ b/TAO/tests/Timed_Buffered_Oneways/test_i.cpp @@ -14,7 +14,7 @@ test_i::method (CORBA::ULong request_number, const test::data &, CORBA::ULong work, CORBA::Environment &) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_DEBUG ((LM_DEBUG, "server: Iteration %d @ %T\n", @@ -30,7 +30,7 @@ test_i::method (CORBA::ULong request_number, void test_i::shutdown (CORBA::Environment &ACE_TRY_ENV) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { this->orb_->shutdown (0, ACE_TRY_ENV); diff --git a/TAO/tests/Timed_Buffered_Oneways/test_i.h b/TAO/tests/Timed_Buffered_Oneways/test_i.h index 19af9a8379f..5bf704ff3de 100644 --- a/TAO/tests/Timed_Buffered_Oneways/test_i.h +++ b/TAO/tests/Timed_Buffered_Oneways/test_i.h @@ -32,10 +32,10 @@ public: const test::data &, CORBA::ULong work, CORBA::Environment &) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); void shutdown (CORBA::Environment &) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); private: CORBA::ORB_var orb_; |