summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Benchmark/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Benchmark/test_i.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/Benchmark/test_i.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/Portable_Interceptors/Benchmark/test_i.cpp b/TAO/tests/Portable_Interceptors/Benchmark/test_i.cpp
index ae5ec11be49..e2c2d6d38cc 100644
--- a/TAO/tests/Portable_Interceptors/Benchmark/test_i.cpp
+++ b/TAO/tests/Portable_Interceptors/Benchmark/test_i.cpp
@@ -11,14 +11,14 @@ Secure_Vault_i::Secure_Vault_i (CORBA::ORB_ptr orb)
}
// ctor
-CORBA::Short
+CORBA::Short
Secure_Vault_i::ready (CORBA::Environment &)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return 1;
}
-void
+void
Secure_Vault_i::authenticate (const char * user,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException,
@@ -26,10 +26,10 @@ Secure_Vault_i::authenticate (const char * user,
{
if (ACE_OS::strcmp (user, "root") != 0)
ACE_THROW (Test_Interceptors::Invalid ());
-
+
}
-CORBA::Long
+CORBA::Long
Secure_Vault_i::update_records (CORBA::Long id,
const Test_Interceptors::Secure_Vault::Record & val,
CORBA::Environment &ACE_TRY_ENV)
@@ -39,8 +39,8 @@ return 1;
}
void
-Secure_Vault_i::shutdown (CORBA::Environment&)
- ACE_THROW_SPEC (())
+Secure_Vault_i::shutdown (CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->orb_->shutdown ();
+ this->orb_->shutdown (0, ACE_TRY_ENV);
}