00001 /* 00002 * 00003 * 00004 * Distributed under the OpenDDS License. 00005 * See: http://www.opendds.org/license.html 00006 */ 00007 00008 #include "EntryExit.h" 00009 00010 ACE_INLINE 00011 OpenDDS::DCPS::ThreadSynchWorker::ThreadSynchWorker( std::size_t id) 00012 : id_(id) 00013 { 00014 DBG_ENTRY_LVL("ThreadSynchWorker","ThreadSynchWorker",6); 00015 } 00016 00017 ACE_INLINE 00018 std::size_t 00019 OpenDDS::DCPS::ThreadSynchWorker::id() const 00020 { 00021 DBG_ENTRY_LVL("ThreadSynchWorker","id",6); 00022 00023 return id_; 00024 } 00025 00026 ACE_INLINE 00027 void 00028 OpenDDS::DCPS::ThreadSynchWorker::schedule_output() 00029 { 00030 DBG_ENTRY_LVL("ThreadSynchWorker","schedule_output",6); 00031 } 00032