summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-27 16:48:08 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-27 16:48:08 +0000
commit369c029f2522ead212dba89707a425596d5160eb (patch)
treecfadf147300750c6e06db139a325e441255bad2e
parentf2b973b5683aeac0d16a389f79d49b41985230d7 (diff)
downloadATCD-369c029f2522ead212dba89707a425596d5160eb.tar.gz
Minor fixes.
-rw-r--r--TAO/tests/RTCORBA/Destroy_Thread_Pool/Destroy_Thread_Pool.cpp4
-rw-r--r--TAO/tests/RTCORBA/Persistent_IOR/server.cpp2
2 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tests/RTCORBA/Destroy_Thread_Pool/Destroy_Thread_Pool.cpp b/TAO/tests/RTCORBA/Destroy_Thread_Pool/Destroy_Thread_Pool.cpp
index e151e684a31..a8873659715 100644
--- a/TAO/tests/RTCORBA/Destroy_Thread_Pool/Destroy_Thread_Pool.cpp
+++ b/TAO/tests/RTCORBA/Destroy_Thread_Pool/Destroy_Thread_Pool.cpp
@@ -56,7 +56,7 @@ create_threadpool (RTCORBA::RTORB_ptr rt_orb,
max_buffered_requests,
max_request_buffer_size,
ACE_TRY_ENV);
- ACE_CHECK;
+ ACE_CHECK_RETURN (0);
return id;
}
@@ -84,7 +84,7 @@ create_threadpool_with_lanes (RTCORBA::RTORB_ptr rt_orb,
max_buffered_requests,
max_request_buffer_size,
ACE_TRY_ENV);
- ACE_CHECK;
+ ACE_CHECK_RETURN (0);
return id;
}
diff --git a/TAO/tests/RTCORBA/Persistent_IOR/server.cpp b/TAO/tests/RTCORBA/Persistent_IOR/server.cpp
index 7d056800e6a..39ff32bbb85 100644
--- a/TAO/tests/RTCORBA/Persistent_IOR/server.cpp
+++ b/TAO/tests/RTCORBA/Persistent_IOR/server.cpp
@@ -142,7 +142,6 @@ write_iors_to_file (CORBA::Object_ptr object,
void
create_poa_and_servant_with_persistent_policy (CORBA::ORB_ptr orb,
- RTCORBA::RTORB_ptr rt_orb,
PortableServer::POA_ptr root_poa,
PortableServer::POAManager_ptr poa_manager,
CORBA::Environment &ACE_TRY_ENV)
@@ -373,7 +372,6 @@ main (int argc, char **argv)
ACE_TRY_CHECK;
create_poa_and_servant_with_persistent_policy (orb.in (),
- rt_orb.in (),
root_poa.in (),
poa_manager.in (),
ACE_TRY_ENV);