OpenDDS  Snapshot(2023/04/28-20:55)
ThreadSynch.cpp
Go to the documentation of this file.
1 /*
2  *
3  *
4  * Distributed under the OpenDDS License.
5  * See: http://www.opendds.org/license.html
6  */
7 
8 #include "DCPS/DdsDcps_pch.h" //Only the _pch include should start with DCPS/
9 #include "ThreadSynch.h"
10 
11 #if !defined (__ACE_INLINE__)
12 #include "ThreadSynch.inl"
13 #endif /* __ACE_INLINE__ */
14 
16 {
17  DBG_ENTRY_LVL("ThreadSynch","~ThreadSynch",6);
18 }
19 
20 int
22 {
23  DBG_ENTRY_LVL("ThreadSynch","register_worker_i",6);
24  // Default implementation is to do nothing here. Subclass may override.
25  return 0;
26 }
27 
28 void
30 {
31  DBG_ENTRY_LVL("ThreadSynch","unregister_worker_i",6);
32  // Default implementation is to do nothing here. Subclass may override.
33 }
virtual void unregister_worker_i()
Definition: ThreadSynch.cpp:29
#define DBG_ENTRY_LVL(CNAME, MNAME, DBG_LVL)
Definition: EntryExit.h:68
virtual int register_worker_i()
Definition: ThreadSynch.cpp:21