#include <Barrier.h>
Inheritance diagram for ACE_Thread_Barrier:


| Public Member Functions | |
| ACE_Thread_Barrier (unsigned int count, const ACE_TCHAR *name=0) | |
| Create a Thread_Barrier, passing in the optional name. | |
| ~ACE_Thread_Barrier (void) | |
| Default dtor. | |
| void | dump (void) const | 
| Dump the state of an object. | |
| Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. | |
This class is just a simple wrapper for ACE_Barrier that selects the USYNC_THREAD variant for the locks.
Definition at line 189 of file Barrier.h.
| 
 | ||||||||||||
| Create a Thread_Barrier, passing in the optional name. 
 Definition at line 159 of file Barrier.cpp. References ACE_TCHAR. 
 00161 : ACE_Barrier (count, name) 00162 { 00163 // ACE_TRACE ("ACE_Thread_Barrier::ACE_Thread_Barrier"); 00164 } | 
| 
 | 
| Default dtor. 
 Definition at line 18 of file Barrier.inl. 
 00019 {
00020 }
 | 
| 
 | 
| Dump the state of an object. 
 Reimplemented from ACE_Barrier. Definition at line 167 of file Barrier.cpp. References ACE_Barrier::dump(). 
 00168 {
00169 #if defined (ACE_HAS_DUMP)
00170 // ACE_TRACE ("ACE_Thread_Barrier::dump");
00171   ACE_Barrier::dump ();
00172 #endif /* ACE_HAS_DUMP */
00173 }
 | 
| 
 | 
| Declare the dynamic allocation hooks. 
 Reimplemented from ACE_Barrier. | 
 1.3.6
 
1.3.6