diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-17 22:20:01 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-17 22:20:01 +0000 |
commit | d941e17f5d4441ef5ee7192020259ba3a78daa34 (patch) | |
tree | 211a69cfe61fad6cc23964b5023736ceb0bab407 /ace/Synch.i | |
parent | f2a2b99b5de1f6d03bd58fc90a2b167a39147111 (diff) | |
download | ATCD-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.i | 12 |
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) { |