summaryrefslogtreecommitdiff
path: root/TAO/tao/Wait_On_Leader_Follower.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-10-15 09:04:10 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-10-15 09:04:10 +0200
commitd911a6ba443409a033a253d4be090472eeebe136 (patch)
treee9a80566d954ac310eef43aa8a53281068c78d8c /TAO/tao/Wait_On_Leader_Follower.cpp
parentc4559d9048a3f386528984d8f5d96259642a6a2b (diff)
downloadATCD-d911a6ba443409a033a253d4be090472eeebe136.tar.gz
Removed FOCUS which uses specialization files to patch the TAO source code. Hasn't been maintained for a long time and was purely research
* ACE/bin/FOCUS/FOCUS.pl: * ACE/bin/FOCUS/NEWS: * ACE/bin/FOCUS/PROBLEM-REPORT-FORM: * ACE/bin/FOCUS/Parser/FOCUSParser.pm: * ACE/bin/FOCUS/README: * ACE/bin/FOCUS/VERSION: * ACE/bin/FOCUS/docs/FOCUS.html: * ACE/bin/FOCUS/specializations/Context-Specific-Optimizations/Dispatch-Resolution-Optimization.spl: * ACE/bin/FOCUS/specializations/Flushing_Strategy/Leader_Follower_Flushing_Strategy.spl: * ACE/bin/FOCUS/specializations/Protocol_Family/IIOP/iiop.spl: * ACE/bin/FOCUS/specializations/README: * ACE/bin/FOCUS/specializations/Reactor_Family/Select_Reactor_MT.spl: * ACE/bin/FOCUS/specializations/Reactor_Family/Select_Reactor_ST.spl: * ACE/bin/FOCUS/specializations/Reactor_Family/TP_Reactor.spl: * ACE/bin/FOCUS/specializations/Wait_Strategy/Wait_On_Leader_Follower.spl: * ACE/bin/FOCUS/specializations/Wait_Strategy/Wait_On_Read.spl: Deleted. * ACE/ace/Asynch_Pseudo_Task.h: * ACE/ace/Reactor.cpp: * ACE/ace/Reactor.h: * ACE/ace/Reactor.inl: * ACE/ace/Select_Reactor.h: * ACE/ace/Select_Reactor_Base.h: * ACE/ace/Select_Reactor_T.cpp: * ACE/ace/Select_Reactor_T.h: * ACE/ace/Timer_Queue_T.cpp: * TAO/tao/Connection_Handler.cpp: * TAO/tao/Connection_Handler.h: * TAO/tao/Connection_Handler.inl: * TAO/tao/Endpoint.cpp: * TAO/tao/Endpoint.h: * TAO/tao/GIOP_Message_Base.cpp: * TAO/tao/IIOP_Acceptor.cpp: * TAO/tao/IIOP_Acceptor.h: * TAO/tao/IIOP_Connection_Handler.cpp: * TAO/tao/IIOP_Connector.cpp: * TAO/tao/IIOP_Connector.h: * TAO/tao/IIOP_Endpoint.cpp: * TAO/tao/IIOP_Endpoint.h: * TAO/tao/IIOP_Profile.cpp: * TAO/tao/IIOP_Profile.h: * TAO/tao/IIOP_Transport.cpp: * TAO/tao/PortableServer/Servant_Base.cpp: * TAO/tao/Profile.cpp: * TAO/tao/Profile.h: * TAO/tao/Strategies/advanced_resource.cpp: * TAO/tao/Transport.cpp: * TAO/tao/Transport.h: * TAO/tao/Transport_Acceptor.cpp: * TAO/tao/Transport_Acceptor.h: * TAO/tao/Transport_Connector.cpp: * TAO/tao/Transport_Connector.h: * TAO/tao/Wait_On_Leader_Follower.cpp: * TAO/tao/Wait_On_Read.cpp: * TAO/tao/Wait_Strategy.cpp: * TAO/tao/default_client.cpp: * TAO/tao/default_resource.cpp: * TAO/tests/Bug_3531b_Regression/server.cpp:
Diffstat (limited to 'TAO/tao/Wait_On_Leader_Follower.cpp')
-rw-r--r--TAO/tao/Wait_On_Leader_Follower.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/TAO/tao/Wait_On_Leader_Follower.cpp b/TAO/tao/Wait_On_Leader_Follower.cpp
index de6873224f4..4b672c8204d 100644
--- a/TAO/tao/Wait_On_Leader_Follower.cpp
+++ b/TAO/tao/Wait_On_Leader_Follower.cpp
@@ -17,14 +17,6 @@ TAO_Wait_On_Leader_Follower::~TAO_Wait_On_Leader_Follower (void)
{
}
-/*
- * Hook to specialize the wait strategy when the concrete strategy is
- * a simple "lf" strategy. Add all public/protected/private methods
- * within the *COPY* hooks.
- */
-
-//@@ WAIT_STRATEGY_SPL_COPY_HOOK_START
-
int
TAO_Wait_On_Leader_Follower::register_handler (void)
{
@@ -52,8 +44,6 @@ TAO_Wait_On_Leader_Follower::sending_request (TAO_ORB_Core *orb_core,
this->transport_->register_handler ();
}
- // Send the request.
-//@@ LF_WAIT_STRATEGY_SPL_SENDING_REQUEST_HOOK
return this->TAO_Wait_Strategy::sending_request (orb_core, msg_semantics);
}
@@ -72,9 +62,4 @@ TAO_Wait_On_Leader_Follower::can_process_upcalls (void) const
return true;
}
-//@@ WAIT_STRATEGY_SPL_COPY_HOOK_END
-/*
- * End copy hook.
- */
-
TAO_END_VERSIONED_NAMESPACE_DECL