summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/RTCorba/Oneways
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 12:24:01 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 12:24:01 +0000
commit50fffc24294535c79b949b696f908c092d43f790 (patch)
tree186521ff27377b238d53deae3e3a8f67b5b3ded4 /TAO/performance-tests/RTCorba/Oneways
parent3514dc83e10aefc0d099b11efd35555ac0ff3d05 (diff)
downloadATCD-50fffc24294535c79b949b696f908c092d43f790.tar.gz
Mon Feb 12 12:22:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/performance-tests/RTCorba/Oneways')
-rw-r--r--TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.cpp4
-rw-r--r--TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.h12
2 files changed, 4 insertions, 12 deletions
diff --git a/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.cpp b/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.cpp
index 361f6e0e653..68c610f8497 100644
--- a/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.cpp
+++ b/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.cpp
@@ -11,7 +11,6 @@ ACE_RCSID(Reliable, test_i, "$Id$")
void
Test_i::oneway_work_test (CORBA::ULong work)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
for (CORBA::ULong i = 0; i < work; i++)
{
@@ -24,13 +23,11 @@ Test_i::oneway_work_test (CORBA::ULong work)
void
Test_i::oneway_payload_test (const Test::data &)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
}
void
Test_i::twoway_work_test (CORBA::ULong work)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
for (CORBA::ULong i = 0; i < work; i++)
{
@@ -43,7 +40,6 @@ Test_i::twoway_work_test (CORBA::ULong work)
void
Test_i::shutdown ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->orb_->shutdown (0);
}
diff --git a/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.h b/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.h
index 861256661ca..2c9998d16c4 100644
--- a/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.h
+++ b/TAO/performance-tests/RTCorba/Oneways/Reliable/test_i.h
@@ -31,17 +31,13 @@ public:
// ctor
// = The Test methods.
- void oneway_payload_test (const Test::data &d)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ void oneway_payload_test (const Test::data &d);
- void oneway_work_test (CORBA::ULong work)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ void oneway_work_test (CORBA::ULong work);
- void twoway_work_test (CORBA::ULong work)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ void twoway_work_test (CORBA::ULong work);
- void shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ void shutdown (void);
private:
CORBA::ORB_var orb_;