summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Reactor/reactor_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Reactor/reactor_i.cpp')
-rw-r--r--TAO/tests/NestedUpcall/Reactor/reactor_i.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/TAO/tests/NestedUpcall/Reactor/reactor_i.cpp b/TAO/tests/NestedUpcall/Reactor/reactor_i.cpp
index fd1e86f26a1..94bf5b09d5b 100644
--- a/TAO/tests/NestedUpcall/Reactor/reactor_i.cpp
+++ b/TAO/tests/NestedUpcall/Reactor/reactor_i.cpp
@@ -19,6 +19,7 @@ Reactor_i::~Reactor_i (void)
CORBA::Long
Reactor_i::register_handler (EventHandler_ptr eh,
CORBA::Environment &)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) BEGIN Reactor_i::register_handler ()\n"));
@@ -47,6 +48,7 @@ Reactor_i::register_handler (EventHandler_ptr eh,
void
Reactor_i::set_value (CORBA::Environment &)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) doing Reactor_i::set_value()\n"));
@@ -56,6 +58,7 @@ CORBA::UShort
Reactor_i::decrement (EventHandler_ptr eh,
CORBA::UShort num,
CORBA::Environment &env)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG, "%{%I(%P|%t) Reactor::decrement (%d)%$", num));
@@ -74,7 +77,9 @@ Reactor_i::decrement (EventHandler_ptr eh,
void
Reactor_i::stop (CORBA::Environment &)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
+ // @@ TODO Keep an ORB pointer around...
ACE_DEBUG ((LM_DEBUG, "(%P|%t) stopping.\n"));
TAO_ORB_Core_instance ()->orb ()->shutdown ();
}