diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-12 11:52:38 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-12 11:52:38 +0000 |
commit | 4a94bf9e8e96ce495aedaf6ef0829e42a4489742 (patch) | |
tree | b1209abef436be321023aa6100646e884be3ada9 /TAO/tests/Oneways_Invoking_Twoways | |
parent | 1a4c23d60cf23b6e97877d6ecf77142e95e7b1fc (diff) | |
download | ATCD-4a94bf9e8e96ce495aedaf6ef0829e42a4489742.tar.gz |
Mon Feb 12 11:40:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Oneways_Invoking_Twoways')
-rw-r--r-- | TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/Oneways_Invoking_Twoways/Receiver_i.h | 6 | ||||
-rw-r--r-- | TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp | 3 | ||||
-rw-r--r-- | TAO/tests/Oneways_Invoking_Twoways/Sender_i.h | 9 |
4 files changed, 5 insertions, 15 deletions
diff --git a/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp b/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp index d9d5b1c20a6..4ece8c08df7 100644 --- a/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp +++ b/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp @@ -20,7 +20,6 @@ Receiver_i::~Receiver_i (void) CORBA::Long Receiver_i::receive_call (void) - ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_DEBUG ((LM_DEBUG, "(%P|%t) Doing a ping... \n")); @@ -32,7 +31,6 @@ Receiver_i::receive_call (void) CORBA::Long Receiver_i::get_call_count ( /**/) - ACE_THROW_SPEC ((CORBA::SystemException)) { return this->iteration_; } diff --git a/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.h b/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.h index cbd618db0a4..2878f61b637 100644 --- a/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.h +++ b/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.h @@ -33,12 +33,10 @@ public: virtual ~Receiver_i (void); // = The skeleton methods - virtual CORBA::Long receive_call (void) - ACE_THROW_SPEC ((CORBA::SystemException)); + virtual CORBA::Long receive_call (void); /// Retun the number of calls that every thread would make... - virtual CORBA::Long get_call_count (void) - ACE_THROW_SPEC ((CORBA::SystemException)); + virtual CORBA::Long get_call_count (void); private: /// Our Orb... diff --git a/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp index 9e4cf2f22e3..ae50a6b64eb 100644 --- a/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp +++ b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.cpp @@ -17,7 +17,6 @@ Sender_i::~Sender_i (void) void Sender_i::active_objects (CORBA::Short no_threads /* */ ) - ACE_THROW_SPEC ((CORBA::SystemException)) { this->active_objects_ = no_threads; } @@ -25,7 +24,6 @@ Sender_i::active_objects (CORBA::Short no_threads void Sender_i::send_ready_message (Test::Receiver_ptr receiver) - ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_DEBUG ((LM_DEBUG, "Received a call ...\n")); @@ -44,7 +42,6 @@ Sender_i::send_ready_message (Test::Receiver_ptr receiver) void Sender_i::ping ( /**/) - ACE_THROW_SPEC ((CORBA::SystemException)) { return; } diff --git a/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h index 57ea386f763..8bb227053e8 100644 --- a/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h +++ b/TAO/tests/Oneways_Invoking_Twoways/Sender_i.h @@ -33,14 +33,11 @@ public: virtual ~Sender_i (void); // = The skeleton methods - virtual void active_objects (CORBA::Short ao) - ACE_THROW_SPEC ((CORBA::SystemException)); + virtual void active_objects (CORBA::Short ao); - virtual void send_ready_message (Test::Receiver_ptr receiver) - ACE_THROW_SPEC ((CORBA::SystemException)); + virtual void send_ready_message (Test::Receiver_ptr receiver); - virtual void ping (void) - ACE_THROW_SPEC ((CORBA::SystemException)); + virtual void ping (void); private: /// Our local ORB ptr |