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


Public Methods | |
| ACE_Thread_Barrier (u_int count, const ACE_TCHAR *name=0) | |
| Create a Thread_Barrier, passing in the optional <name>. More... | |
| ~ACE_Thread_Barrier (void) | |
| Default dtor. More... | |
| void | dump (void) const |
| Dump the state of an object. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
This class is just a simple wrapper for ACE_Barrier that selects the USYNC_THREAD variant for the locks.
Definition at line 1661 of file Synch.h.
|
||||||||||||
|
Create a Thread_Barrier, passing in the optional <name>.
Definition at line 773 of file Synch.cpp. References ACE_TCHAR.
00774 : ACE_Barrier (count, name) 00775 { 00776 // ACE_TRACE ("ACE_Thread_Barrier::ACE_Thread_Barrier"); 00777 } |
|
|
Default dtor.
|
|
|
Dump the state of an object.
Reimplemented from ACE_Barrier. Definition at line 780 of file Synch.cpp. References ACE_Barrier::dump.
00781 {
00782 // ACE_TRACE ("ACE_Thread_Barrier::dump");
00783 ACE_Barrier::dump ();
00784 }
|
|
|
Declare the dynamic allocation hooks.
Reimplemented from ACE_Barrier. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002