Compounds |
class | ACE_Acquire_Method |
| An enum class. More...
|
class | ACE_Condition |
| ACE_Condition variable wrapper, which allows threads to block until shared data changes state. More...
|
class | ACE_Guard |
| This data structure is meant to be used within a method or function... It performs automatic aquisition and release of a parameterized synchronization object <ACE_LOCK>. More...
|
class | ACE_Lock_Adapter |
| This is an adapter that allows applications to transparently combine the <ACE_Lock> abstract base class (which contains pure virtual methods) with any of the other concrete ACE synchronization classes (e.g., <ACE_Mutex>, <ACE_Semaphore>, <ACE_RW_Mutex>, etc.). More...
|
class | ACE_MT_SYNCH |
| Implement a default thread safe synchronization wrapper that typedefs the <ACE_Condition> and <ACE_Mutex> to the <ACE_Condition> and <ACE_Mutex> versions. Note that this should be a template, but SunC++ 4.0.1 complains about this... More...
|
class | ACE_NULL_SYNCH |
| Implement a do nothing Synchronization wrapper that typedefs the <ACE_Condition> and <ACE_Mutex> to the Null* versions. More...
|
class | ACE_Read_Guard |
| This class is similar to class <ACE_Guard>, though it acquires/releases a read lock automatically (naturally, the <ACE_LOCK> it is instantiated with must support the appropriate API). More...
|
class | ACE_Reverse_Lock |
| A reverse (or anti) lock. More...
|
class | ACE_Thread_Condition |
| ACE_Condition variable wrapper that works within processes. More...
|
class | ACE_TSS |
| Allows objects that are "physically" in thread specific storage (i.e., private to a thread) to be accessed as though they were "logically" global to a program. More...
|
class | ACE_TSS_Type_Adapter |
| Adapter that allows built-in types to be used with ACE_TSS. More...
|
class | ACE_Write_Guard |
| This class is similar to class <ACE_Guard>, though it acquires/releases a write lock automatically (naturally, the <ACE_LOCK> it is instantiated with must support the appropriate API). More...
|
Defines |
#define | ACE_TSS_Guard ACE_Guard |
#define | ACE_TSS_Write_GUARD ACE_Write_Guard |
#define | ACE_TSS_Read_GUARD ACE_Read_Guard |
#define | ACE_SYNCH_MUTEX ACE_SYNCH::MUTEX |
#define | ACE_SYNCH_NULL_MUTEX ACE_SYNCH::NULL_MUTEX |
#define | ACE_SYNCH_RECURSIVE_MUTEX ACE_SYNCH::RECURSIVE_MUTEX |
#define | ACE_SYNCH_RW_MUTEX ACE_SYNCH::RW_MUTEX |
#define | ACE_SYNCH_CONDITION ACE_SYNCH::CONDITION |
#define | ACE_SYNCH_RECURSIVE_CONDITION ACE_SYNCH::RECURSIVE_CONDITION |
#define | ACE_SYNCH_NULL_SEMAPHORE ACE_SYNCH::NULL_SEMAPHORE |
#define | ACE_SYNCH_SEMAPHORE ACE_SYNCH::SEMAPHORE |
#define | ACE_SYNCH_PROCESS_SEMAPHORE ACE_Process_Semaphore |
#define | ACE_SYNCH_PROCESS_MUTEX ACE_Process_Mutex |
#define | ACE_SYNCH ACE_MT_SYNCH |