summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO_Server_Request.cpp
diff options
context:
space:
mode:
authorsma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-06-26 09:26:36 +0000
committersma <sma@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-06-26 09:26:36 +0000
commit12cbc0a056b2fd94c2137fceefb82c1f6a8adb6e (patch)
treefab549be9031dc938de60e6490ae7e3f577afbb5 /TAO/tao/TAO_Server_Request.cpp
parent09f151e9980fb754f3ccacccbf613fbe32791689 (diff)
downloadATCD-12cbc0a056b2fd94c2137fceefb82c1f6a8adb6e.tar.gz
ChangeLogTag: Mon Jun 26 09:15:00 UTC 2006 Simon Massey <sma@prismtech.com>
Diffstat (limited to 'TAO/tao/TAO_Server_Request.cpp')
-rw-r--r--TAO/tao/TAO_Server_Request.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/TAO/tao/TAO_Server_Request.cpp b/TAO/tao/TAO_Server_Request.cpp
index 726825d5dcc..3b1b8e61d94 100644
--- a/TAO/tao/TAO_Server_Request.cpp
+++ b/TAO/tao/TAO_Server_Request.cpp
@@ -76,7 +76,6 @@ TAO_ServerRequest::TAO_ServerRequest (TAO_Pluggable_Messaging *mesg_base,
#if TAO_HAS_INTERCEPTORS == 1
, interceptor_count_ (0)
, rs_pi_current_ (0)
- , pi_current_copy_callback_ (0)
, result_seq_ (0)
, caught_exception_ (0)
, reply_status_ (-1)
@@ -119,7 +118,6 @@ TAO_ServerRequest::TAO_ServerRequest (TAO_Pluggable_Messaging *mesg_base,
#if TAO_HAS_INTERCEPTORS == 1
, interceptor_count_ (0)
, rs_pi_current_ (0)
- , pi_current_copy_callback_ (0)
, result_seq_ (0)
, caught_exception_ (0)
, reply_status_ (-1)
@@ -155,7 +153,6 @@ TAO_ServerRequest::TAO_ServerRequest (TAO_ORB_Core * orb_core,
#if TAO_HAS_INTERCEPTORS == 1
, interceptor_count_ (0)
, rs_pi_current_ (0)
- , pi_current_copy_callback_ (0)
, result_seq_ (0)
, caught_exception_ (0)
, reply_status_ (-1)
@@ -186,18 +183,6 @@ TAO_ServerRequest::TAO_ServerRequest (TAO_ORB_Core * orb_core,
TAO_ServerRequest::~TAO_ServerRequest (void)
{
#if TAO_HAS_INTERCEPTORS == 1
- if (this->pi_current_copy_callback_)
- {
- TAO::ServerRequestInterceptor_Adapter *interceptor_adapter =
- this->orb_core_->serverrequestinterceptor_adapter ();
-
- if (interceptor_adapter)
- {
- interceptor_adapter->deallocate_pi_current_callback (
- this->pi_current_copy_callback_);
- }
- }
-
if (this->rs_pi_current_)
{
TAO::ServerRequestInterceptor_Adapter *interceptor_adapter =
@@ -581,24 +566,6 @@ TAO_ServerRequest::rs_pi_current (void)
return this->rs_pi_current_;
}
-TAO::PICurrent_Copy_Callback *
-TAO_ServerRequest::pi_current_copy_callback (void)
-{
- if (!this->pi_current_copy_callback_)
- {
- TAO::ServerRequestInterceptor_Adapter *interceptor_adapter =
- this->orb_core_->serverrequestinterceptor_adapter ();
-
- if (interceptor_adapter)
- {
- this->pi_current_copy_callback_ =
- interceptor_adapter->allocate_pi_current_callback ();
- }
- }
-
- return this->pi_current_copy_callback_;
-}
-
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_HAS_INTERCEPTORS */