aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/Recursive_Thread_Mutex.h
diff options
context:
space:
mode:
authorsilinoron <none@none>2010-08-15 13:21:05 -0700
committersilinoron <none@none>2010-08-15 13:21:05 -0700
commit4d5296299b7a72c37cda56bfa885c82167066c3c (patch)
tree2936b23000015173a0c2d82907df9ce7fdc8f785 /externals/ace/Recursive_Thread_Mutex.h
parente3b8a5923d5e5512cfe6e0f02246d22146691008 (diff)
Backed out changeset: 6b66f86b01e4
Should fix windows compile. Blame me and click (but mostly click) --HG-- branch : trunk
Diffstat (limited to 'externals/ace/Recursive_Thread_Mutex.h')
-rw-r--r--externals/ace/Recursive_Thread_Mutex.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/externals/ace/Recursive_Thread_Mutex.h b/externals/ace/Recursive_Thread_Mutex.h
index 93a25a7bd11..5b7809afe58 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 91066 2010-07-12 11:05:04Z johnnyw $
+ * $Id: Recursive_Thread_Mutex.h 89121 2010-02-22 14:48:31Z schmidt $
*
* 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.