summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/fixed_struct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Param_Test/fixed_struct.cpp')
-rw-r--r--TAO/tests/Param_Test/fixed_struct.cpp39
1 files changed, 19 insertions, 20 deletions
diff --git a/TAO/tests/Param_Test/fixed_struct.cpp b/TAO/tests/Param_Test/fixed_struct.cpp
index 281ab6c72c1..863ddd48ed8 100644
--- a/TAO/tests/Param_Test/fixed_struct.cpp
+++ b/TAO/tests/Param_Test/fixed_struct.cpp
@@ -43,20 +43,19 @@ Test_Fixed_Struct::opname (void) const
}
void
-Test_Fixed_Struct::dii_req_invoke (CORBA::Request *req,
- CORBA::Environment &ACE_TRY_ENV)
+Test_Fixed_Struct::dii_req_invoke (CORBA::Request *req)
{
- req->invoke (ACE_TRY_ENV);
+ req->invoke ();
}
int
-Test_Fixed_Struct::init_parameters (Param_Test_ptr /*objref*/,
- CORBA::Environment &/*env*/)
+Test_Fixed_Struct::init_parameters (Param_Test_ptr objref,
+ CORBA::Environment &env)
{
Generator *gen = GENERATOR::instance (); // value generator
- //ACE_UNUSED_ARG (objref);
- //ACE_UNUSED_ARG (env);
+ ACE_UNUSED_ARG (objref);
+ ACE_UNUSED_ARG (env);
this->in_ = gen->gen_fixed_struct ();
ACE_OS::memset (&this->inout_,
@@ -85,19 +84,19 @@ Test_Fixed_Struct::reset_parameters (void)
int
Test_Fixed_Struct::run_sii_test (Param_Test_ptr objref,
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::Environment &env)
{
this->ret_ = objref->test_fixed_struct (this->in_,
this->inout_,
this->out_,
- ACE_TRY_ENV);
- return (ACE_TRY_ENV.exception () ? -1:0);
+ env);
+ return (env.exception () ? -1:0);
}
int
Test_Fixed_Struct::add_args (CORBA::NVList_ptr param_list,
CORBA::NVList_ptr retval,
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::Environment &env)
{
// We provide the top level memory
// the Any does not own any of these
@@ -117,23 +116,23 @@ Test_Fixed_Struct::add_args (CORBA::NVList_ptr param_list,
param_list->add_value ("s1",
in_arg,
CORBA::ARG_IN,
- ACE_TRY_ENV);
+ env);
param_list->add_value ("s2",
inout_arg,
CORBA::ARG_INOUT,
- ACE_TRY_ENV);
+ env);
param_list->add_value ("s3",
out_arg,
CORBA::ARG_OUT,
- ACE_TRY_ENV);
+ env);
// add return value type
- retval->item (0, ACE_TRY_ENV)->value ()->replace (Param_Test::_tc_Fixed_Struct,
- &this->ret_,
- 0, // does not own
- ACE_TRY_ENV);
+ retval->item (0, env)->value ()->replace (Param_Test::_tc_Fixed_Struct,
+ &this->ret_,
+ 0, // does not own
+ env);
return 0;
}
@@ -167,9 +166,9 @@ Test_Fixed_Struct::check_validity (void)
}
CORBA::Boolean
-Test_Fixed_Struct::check_validity (CORBA::Request_ptr /*req*/)
+Test_Fixed_Struct::check_validity (CORBA::Request_ptr req)
{
- //ACE_UNUSED_ARG (req);
+ ACE_UNUSED_ARG (req);
return this->check_validity ();
}