summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Oneways/Session.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Oneways/Session.cpp')
-rw-r--r--TAO/tests/Big_Oneways/Session.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/TAO/tests/Big_Oneways/Session.cpp b/TAO/tests/Big_Oneways/Session.cpp
index dd7003cb964..1abeb5c48e1 100644
--- a/TAO/tests/Big_Oneways/Session.cpp
+++ b/TAO/tests/Big_Oneways/Session.cpp
@@ -114,9 +114,6 @@ Session::validate_connections (void)
void
Session::start (const Test::Session_List &other_sessions)
- ACE_THROW_SPEC ((CORBA::SystemException,
- Test::Already_Running,
- Test::No_Peers))
{
if (other_sessions.length () == 0)
throw Test::No_Peers ();
@@ -170,13 +167,12 @@ Session::start (const Test::Session_List &other_sessions)
}
void
-Session::ping (void) ACE_THROW_SPEC ((CORBA::SystemException))
+Session::ping (void)
{
}
void
Session::receive_payload (const Test::Payload &the_payload)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
if (the_payload.length () != this->payload_size_)
{
@@ -188,7 +184,7 @@ Session::receive_payload (const Test::Payload &the_payload)
{
ACE_GUARD (ACE_SYNCH_MUTEX, ace_mon, this->mutex_);
- this->expected_messages_--;
+ --this->expected_messages_;
#if 0
int verbose = 0;
@@ -218,7 +214,6 @@ Session::receive_payload (const Test::Payload &the_payload)
void
Session::destroy (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
// Make sure local resources are released
@@ -242,7 +237,6 @@ Session::more_work (void) const
void
Session::terminate (CORBA::Boolean success)
- ACE_THROW_SPEC (())
{
// Make sure that global resources are released
try