diff options
author | fhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-12 18:58:44 +0000 |
---|---|---|
committer | fhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-12 18:58:44 +0000 |
commit | 8d40b91422e328d03a0cda9dc91a9cb92458aa52 (patch) | |
tree | 468291519f5de84e2d73520262cff279db26aa67 /TAO/tao/default_resource.cpp | |
parent | 0d2e3d69b72f8f9dad3402500a1b77d4a579c43a (diff) | |
download | ATCD-8d40b91422e328d03a0cda9dc91a9cb92458aa52.tar.gz |
Tue Jun 12 13:30:02 2001 Frank Hunleth <fhunleth@cs.wustl.edu>, Angelo Corsaro <corsaro@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/default_resource.cpp')
-rw-r--r-- | TAO/tao/default_resource.cpp | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/TAO/tao/default_resource.cpp b/TAO/tao/default_resource.cpp index d07bf0c5258..de07700d0e8 100644 --- a/TAO/tao/default_resource.cpp +++ b/TAO/tao/default_resource.cpp @@ -9,7 +9,6 @@ #include "tao/Acceptor_Registry.h" #include "tao/Connector_Registry.h" #include "tao/Single_Reactor.h" -#include "tao/Priority_Mapping.h" #include "tao/Reactive_Flushing_Strategy.h" #include "tao/Block_Flushing_Strategy.h" @@ -38,8 +37,8 @@ TAO_Default_Resource_Factory::TAO_Default_Resource_Factory (void) purge_percentage_ (TAO_PURGE_PERCENT), reactor_mask_signals_ (1), dynamically_allocated_reactor_ (0), - cached_connection_lock_type_ (TAO_THREAD_LOCK) - , flushing_strategy_type_ (TAO_REACTIVE_FLUSHING) + cached_connection_lock_type_ (TAO_THREAD_LOCK), + flushing_strategy_type_ (TAO_REACTIVE_FLUSHING) { } @@ -836,21 +835,6 @@ TAO_Default_Resource_Factory::create_lf_strategy (void) return strategy; } -TAO_Priority_Mapping * -TAO_Default_Resource_Factory::get_priority_mapping (void) -{ -#if (TAO_HAS_RT_CORBA == 0) - return 0; -#else - TAO_Priority_Mapping *pm; - - ACE_NEW_RETURN (pm, - TAO_Priority_Mapping, - 0); - return pm; -#endif /* TAO_HAS_RT_CORBA == 0 */ -} - // **************************************************************** ACE_STATIC_SVC_DEFINE (TAO_Default_Resource_Factory, |