diff options
author | click <none@none> | 2010-08-15 00:28:14 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-15 00:28:14 +0200 |
commit | e3b8a5923d5e5512cfe6e0f02246d22146691008 (patch) | |
tree | c7bed4a5667148d73b75ab62eae9695eb10cad49 /externals/ace/Recursive_Thread_Mutex.h | |
parent | f3b93df6b70648fdd644c6e0db24089dca34738e (diff) |
Core/externals: Update ACE to 5.8.1 (should fix issues with disconnects happening on servers compiled under VS2010)
Update issue 3411
Status: NeedsFeedback
--HG--
branch : trunk
Diffstat (limited to 'externals/ace/Recursive_Thread_Mutex.h')
-rw-r--r-- | externals/ace/Recursive_Thread_Mutex.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/externals/ace/Recursive_Thread_Mutex.h b/externals/ace/Recursive_Thread_Mutex.h index 5b7809afe58..93a25a7bd11 100644 --- a/externals/ace/Recursive_Thread_Mutex.h +++ b/externals/ace/Recursive_Thread_Mutex.h @@ -4,7 +4,7 @@ /** * @file Recursive_Thread_Mutex.h * - * $Id: Recursive_Thread_Mutex.h 89121 2010-02-22 14:48:31Z schmidt $ + * $Id: Recursive_Thread_Mutex.h 91066 2010-07-12 11:05:04Z johnnyw $ * * Moved from Synch.h. * @@ -90,14 +90,14 @@ public: /** * Acquire mutex ownership. This calls <acquire> and is only - * here to make the <ACE_Recusive_Thread_Mutex> interface consistent + * here to make the ACE_Recusive_Thread_Mutex interface consistent * with the other synchronization APIs. */ int acquire_read (void); /** * Acquire mutex ownership. This calls <acquire> and is only - * here to make the <ACE_Recusive_Thread_Mutex> interface consistent + * here to make the ACE_Recusive_Thread_Mutex interface consistent * with the other synchronization APIs. */ int acquire_write (void); @@ -105,7 +105,7 @@ public: /** * Conditionally acquire mutex (i.e., won't block). This calls * <tryacquire> and is only here to make the - * <ACE_Recusive_Thread_Mutex> interface consistent with the other + * ACE_Recusive_Thread_Mutex interface consistent with the other * synchronization APIs. Returns -1 on failure. If we "failed" * because someone else already had the lock, @c errno is set to * @c EBUSY. @@ -115,7 +115,7 @@ public: /** * Conditionally acquire mutex (i.e., won't block). This calls * <tryacquire> and is only here to make the - * <ACE_Recusive_Thread_Mutex> interface consistent with the other + * ACE_Recusive_Thread_Mutex interface consistent with the other * synchronization APIs. Returns -1 on failure. If we "failed" * because someone else already had the lock, @c errno is set to * @c EBUSY. |