00001 /* 00002 * 00003 * 00004 * Distributed under the OpenDDS License. 00005 * See: http://www.opendds.org/license.html 00006 */ 00007 00008 #include "DCPS/DdsDcps_pch.h" //Only the _pch include should start with DCPS/ 00009 #include "ReactorSynchStrategy.h" 00010 #include "ReactorSynch.h" 00011 00012 #if !defined (__ACE_INLINE__) 00013 #include "ReactorSynchStrategy.inl" 00014 #endif /* __ACE_INLINE__ */ 00015 00016 OpenDDS::DCPS::ReactorSynchStrategy::~ReactorSynchStrategy() 00017 { 00018 DBG_ENTRY_LVL("ReactorSynchStrategy","~ReactorSynchStrategy",6); 00019 } 00020 00021 OpenDDS::DCPS::ThreadSynch* 00022 OpenDDS::DCPS::ReactorSynchStrategy::create_synch_object( 00023 ThreadSynchResource* synch_resource, long, int) 00024 { 00025 DBG_ENTRY_LVL("ReactorSynchStrategy","create_synch_object",6); 00026 return new ReactorSynch( 00027 synch_resource, strategy_, reactor_); 00028 }