2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
5 ACE_Condition_Attributes::ACE_Condition_Attributes (int type)
7 (void) ACE_OS::condattr_init (this->attributes_, type);
11 ACE_Condition_Attributes::~ACE_Condition_Attributes ()
13 ACE_OS::condattr_destroy (this->attributes_);
18 ACE_Condition_Attributes::attributes () const
20 return this->attributes_;
24 ACE_Condition_Attributes_T<ACE_Monotonic_Time_Policy>::ACE_Condition_Attributes_T (int type)
25 : ACE_Condition_Attributes (type)
27 #if defined (ACE_HAS_POSIX_MONOTONIC_CONDITIONS)
28 (void) ACE_OS::condattr_setclock (this->attributes_, CLOCK_MONOTONIC);
32 ACE_END_VERSIONED_NAMESPACE_DECL