summaryrefslogtreecommitdiff
path: root/ACE/ace/Handle_Set.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-07-14 07:48:09 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-07-14 07:48:09 +0000
commite0ea065be3c76a012b943fa8bf08415bc2f4be2f (patch)
tree828fddbb1658e9fd9ee6dd015531060552157b0c /ACE/ace/Handle_Set.h
parent78cd8ec7aaa4eda5b4f38328d48e874f9cf22b1d (diff)
downloadATCD-e0ea065be3c76a012b943fa8bf08415bc2f4be2f.tar.gz
Sat Jul 14 07:47:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Handle_Set.h')
-rw-r--r--ACE/ace/Handle_Set.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ACE/ace/Handle_Set.h b/ACE/ace/Handle_Set.h
index 90c7713a7c3..8b9edb4fd39 100644
--- a/ACE/ace/Handle_Set.h
+++ b/ACE/ace/Handle_Set.h
@@ -48,7 +48,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
* This abstraction is a very efficient wrapper facade over
* <fd_set>. In particular, no range checking is performed, so
* it's important not to set or clear bits that are outside the
- * <ACE_DEFAULT_SELECT_REACTOR_SIZE>.
+ * @c ACE_DEFAULT_SELECT_REACTOR_SIZE.
*/
class ACE_Export ACE_Handle_Set
{
@@ -76,18 +76,18 @@ public:
void reset (void);
/**
- * Checks whether <handle> is enabled. No range checking is
- * performed so <handle> must be less than
- * <ACE_DEFAULT_SELECT_REACTOR_SIZE>.
+ * Checks whether @a handle is enabled. No range checking is
+ * performed so @a handle must be less than
+ * @c ACE_DEFAULT_SELECT_REACTOR_SIZE.
*/
int is_set (ACE_HANDLE handle) const;
- /// Enables the <handle>. No range checking is performed so <handle>
- /// must be less than <ACE_DEFAULT_SELECT_REACTOR_SIZE>.
+ /// Enables the @a handle. No range checking is performed so @a handle
+ /// must be less than @c ACE_DEFAULT_SELECT_REACTOR_SIZE.
void set_bit (ACE_HANDLE handle);
- /// Disables the <handle>. No range checking is performed so
- /// <handle> must be less than <ACE_DEFAULT_SELECT_REACTOR_SIZE>.
+ /// Disables the @a handle. No range checking is performed so
+ /// @a handle must be less than @c ACE_DEFAULT_SELECT_REACTOR_SIZE.
void clr_bit (ACE_HANDLE handle);
/// Returns a count of the number of enabled bits.
@@ -97,7 +97,7 @@ public:
ACE_HANDLE max_set (void) const;
/**
- * Rescan the underlying <fd_set> up to handle <max> to find the new
+ * Rescan the underlying <fd_set> up to handle @a max to find the new
* <max_handle> (highest bit set) and <size> (how many bits set) values.
* This is useful for evaluating the changes after the handle set has
* been manipulated in some way other than member functions; for example,