summaryrefslogtreecommitdiff
path: root/ace/Synch.i
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-17 22:20:01 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-17 22:20:01 +0000
commitd941e17f5d4441ef5ee7192020259ba3a78daa34 (patch)
tree211a69cfe61fad6cc23964b5023736ceb0bab407 /ace/Synch.i
parentf2a2b99b5de1f6d03bd58fc90a2b167a39147111 (diff)
downloadATCD-d941e17f5d4441ef5ee7192020259ba3a78daa34.tar.gz
ChangeLogTag:Tue Aug 17 17:17:13 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'ace/Synch.i')
-rw-r--r--ace/Synch.i12
1 files changed, 12 insertions, 0 deletions
diff --git a/ace/Synch.i b/ace/Synch.i
index 9c0338ee89e..f232df780ca 100644
--- a/ace/Synch.i
+++ b/ace/Synch.i
@@ -670,6 +670,18 @@ ACE_Thread_Mutex_Guard::remove (void)
}
#endif /* ACE_USES_OBSOLETE_GUARD_CLASSES */
+ACE_INLINE
+ACE_Condition_Attributes::ACE_Condition_Attributes (int type)
+{
+ (void) ACE_OS::condattr_init (this->attributes_, type);
+}
+
+ACE_INLINE
+ACE_Condition_Attributes::~ACE_Condition_Attributes (void)
+{
+ ACE_OS::condattr_destroy (this->attributes_);
+}
+
ACE_INLINE int
ACE_Condition_Thread_Mutex::remove (void)
{