#include <Condition_Thread_Mutex.h>
Public Member Functions | |
| ACE_Condition_Attributes (int type=ACE_DEFAULT_SYNCH_TYPE) | |
| Constructor. | |
| ~ACE_Condition_Attributes (void) | |
| Destructor. | |
Private Member Functions | |
| void | operator= (const ACE_Condition_Attributes &) |
| ACE_Condition_Attributes (const ACE_Condition_Attributes &) | |
Private Attributes | |
| ACE_condattr_t | attributes_ |
| The attributes. | |
Friends | |
| class | ACE_Condition_Thread_Mutex |
|
|
Constructor.
Definition at line 8 of file Condition_Thread_Mutex.inl. References ACE_OS::condattr_init().
00009 {
00010 (void) ACE_OS::condattr_init (this->attributes_, type);
00011 }
|
|
|
Destructor.
Definition at line 14 of file Condition_Thread_Mutex.inl. References ACE_OS::condattr_destroy().
00015 {
00016 ACE_OS::condattr_destroy (this->attributes_);
00017 }
|
|
|
|
|
|
|
|
|
Definition at line 46 of file Condition_Thread_Mutex.h. |
|
|
The attributes.
Definition at line 49 of file Condition_Thread_Mutex.h. Referenced by ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex(). |
1.3.6