summaryrefslogtreecommitdiff
path: root/TAO/tao/CSD_Framework/CSD_Strategy_Base.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/CSD_Framework/CSD_Strategy_Base.inl')
-rw-r--r--TAO/tao/CSD_Framework/CSD_Strategy_Base.inl19
1 files changed, 6 insertions, 13 deletions
diff --git a/TAO/tao/CSD_Framework/CSD_Strategy_Base.inl b/TAO/tao/CSD_Framework/CSD_Strategy_Base.inl
index d3b40bfcef9..b68910e87ab 100644
--- a/TAO/tao/CSD_Framework/CSD_Strategy_Base.inl
+++ b/TAO/tao/CSD_Framework/CSD_Strategy_Base.inl
@@ -16,8 +16,7 @@ ACE_INLINE
void
TAO::CSD::Strategy_Base::dispatch_request
(TAO_ServerRequest& server_request,
- TAO::Portable_Server::Servant_Upcall& upcall
- )
+ TAO::Portable_Server::Servant_Upcall& upcall)
{
DispatchResult result;
@@ -27,8 +26,7 @@ TAO::CSD::Strategy_Base::dispatch_request
upcall.user_id(),
this->poa_.in(),
server_request.operation(),
- upcall.servant()
- );
+ upcall.servant());
}
else
{
@@ -36,8 +34,7 @@ TAO::CSD::Strategy_Base::dispatch_request
upcall.user_id(),
this->poa_.in(),
server_request.operation(),
- upcall.servant()
- );
+ upcall.servant());
}
switch (result)
@@ -69,9 +66,7 @@ TAO::CSD::Strategy_Base::dispatch_request
case DISPATCH_DEFERRED:
// Perform the "default" dispatching strategy logic for this request
// right now, using the current thread.
- upcall.servant()->_dispatch(server_request,
- (void*)&upcall
- );
+ upcall.servant()->_dispatch(server_request, (void*)&upcall);
break;
default:
@@ -120,8 +115,7 @@ ACE_INLINE
void
TAO::CSD::Strategy_Base::servant_activated_event
(PortableServer::Servant servant,
- const PortableServer::ObjectId& oid
- )
+ const PortableServer::ObjectId& oid)
{
this->servant_activated_event_i(servant, oid);
}
@@ -130,8 +124,7 @@ ACE_INLINE
void
TAO::CSD::Strategy_Base::servant_deactivated_event
(PortableServer::Servant servant,
- const PortableServer::ObjectId& oid
- )
+ const PortableServer::ObjectId& oid)
{
this->servant_deactivated_event_i(servant, oid);
}