summaryrefslogtreecommitdiff
path: root/ACE/ace/Lock_Adapter_T.h
diff options
context:
space:
mode:
authormcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-02-11 11:33:12 +0000
committermcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-02-11 11:33:12 +0000
commit4df04cc27ef1e77bcc941afaba7d4c943b98a936 (patch)
tree5054c2bde24d048d4790ff659b61be0838cd0d69 /ACE/ace/Lock_Adapter_T.h
parentb723802f85ac66026a503827677a2fb1e9a77933 (diff)
downloadATCD-4df04cc27ef1e77bcc941afaba7d4c943b98a936.tar.gz
Fri Feb 11 11:16:00 UTC 2011 Martin Corino <mcorino@remedy.nl>
Merged changes from Remedy work branch.
Diffstat (limited to 'ACE/ace/Lock_Adapter_T.h')
-rw-r--r--ACE/ace/Lock_Adapter_T.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Lock_Adapter_T.h b/ACE/ace/Lock_Adapter_T.h
index 866616d1bb1..089b14965ab 100644
--- a/ACE/ace/Lock_Adapter_T.h
+++ b/ACE/ace/Lock_Adapter_T.h
@@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
* @class ACE_Lock_Adapter
*
* @brief This is an adapter that allows applications to transparently
- * combine the <ACE_Lock> abstract base class (which contains
+ * combine the ACE_Lock abstract base class (which contains
* pure virtual methods) with any of the other concrete ACE
* synchronization classes (e.g., ACE_Mutex, ACE_Semaphore,
* ACE_RW_Mutex, etc.).
@@ -50,7 +50,7 @@ public:
/// created internally.
ACE_Lock_Adapter (void);
- /// Destructor. If <lock_> was not passed in by the user, it will be
+ /// Destructor. If @c lock_ was not passed in by the user, it will be
/// deleted.
virtual ~ACE_Lock_Adapter (void);
@@ -67,29 +67,29 @@ public:
/**
* Block until the thread acquires a read lock. If the locking
* mechanism doesn't support read locks then this just calls
- * <acquire>.
+ * acquire().
*/
virtual int acquire_read (void);
/**
* Block until the thread acquires a write lock. If the locking
* mechanism doesn't support read locks then this just calls
- * <acquire>.
+ * acquire().
*/
virtual int acquire_write (void);
/// Conditionally acquire a read lock. If the locking mechanism
- /// doesn't support read locks then this just calls <acquire>.
+ /// doesn't support read locks then this just calls acquire().
virtual int tryacquire_read (void);
/// Conditionally acquire a write lock. If the locking mechanism
- /// doesn't support read locks then this just calls <acquire>.
+ /// doesn't support read locks then this just calls acquire().
virtual int tryacquire_write (void);
/**
* Conditionally try to upgrade a lock held for read to a write lock.
* If the locking mechanism doesn't support read locks then this just
- * calls <acquire>. Returns 0 on success, -1 on failure.
+ * calls acquire(). Returns 0 on success, -1 on failure.
*/
virtual int tryacquire_write_upgrade (void);