summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-02 20:12:53 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-02 20:12:53 +0000
commit304ba3f4c19cf39166700cfd26eb8d4ff59b4c9a (patch)
treefedac6daa5f5bfe0ff47369e35241424fad43131
parent1d57ebafec216ba390c1b15ea6e854bc5b075876 (diff)
downloadATCD-304ba3f4c19cf39166700cfd26eb8d4ff59b4c9a.tar.gz
ChangeLogTag:Thu Nov 2 12:11:43 2000 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-02a8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--ace/Log_Record.h12
-rw-r--r--ace/Map_Manager.h4
-rw-r--r--ace/Name_Request_Reply.h2
-rw-r--r--ace/Timer_Hash_T.h2
7 files changed, 34 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 02df2518197..a86da09f9c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Thu Nov 2 12:11:43 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Name_Request_Reply.h:
+ * ace/Timer_Hash_T.h:
+ * ace/Map_Manager.h:
+ * ace/Log_Record.h:
+ Minor adjustments to make doxygen happier.
+
Thu Nov 2 11:57:37 2000 Carlos O'Ryan <coryan@uci.edu>
* ace/Makefile:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 02df2518197..a86da09f9c8 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Thu Nov 2 12:11:43 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Name_Request_Reply.h:
+ * ace/Timer_Hash_T.h:
+ * ace/Map_Manager.h:
+ * ace/Log_Record.h:
+ Minor adjustments to make doxygen happier.
+
Thu Nov 2 11:57:37 2000 Carlos O'Ryan <coryan@uci.edu>
* ace/Makefile:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 02df2518197..a86da09f9c8 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Thu Nov 2 12:11:43 2000 Carlos O'Ryan <coryan@uci.edu>
+
+ * ace/Name_Request_Reply.h:
+ * ace/Timer_Hash_T.h:
+ * ace/Map_Manager.h:
+ * ace/Log_Record.h:
+ Minor adjustments to make doxygen happier.
+
Thu Nov 2 11:57:37 2000 Carlos O'Ryan <coryan@uci.edu>
* ace/Makefile:
diff --git a/ace/Log_Record.h b/ace/Log_Record.h
index a356ed23486..17fdfda3925 100644
--- a/ace/Log_Record.h
+++ b/ace/Log_Record.h
@@ -32,19 +32,19 @@ public:
enum
{
+ /// Maximum size of a logging message.
MAXLOGMSGLEN = ACE_MAXLOGMSGLEN,
- // Maximum size of a logging message.
+ /// Most restrictive alignment.
ALIGN_WORDB = 8,
- // Most restrictive alignment.
+ /// Size used by verbose mode.
+ /// 20 (date) + 15 (host_name) + 10 (pid) + 10 (type)
+ /// + 4 (@) ... + ? (progname)
VERBOSE_LEN = 128,
- // Size used by verbose mode.
- // 20 (date) + 15 (host_name) + 10 (pid) + 10 (type) + 4 (@) ... +
- // ? (progname)
+ /// Maximum size of a logging message with the verbose headers
MAXVERBOSELOGMSGLEN = VERBOSE_LEN + MAXLOGMSGLEN
- // Maximum size of a logging message with the verbose headers
};
// = Initialization
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h
index 3a497cdb8b4..6b424979b01 100644
--- a/ace/Map_Manager.h
+++ b/ace/Map_Manager.h
@@ -393,10 +393,10 @@ protected:
enum
{
- // Grow map exponentially up to 64K
+ /// Grow map exponentially up to 64K
MAX_EXPONENTIAL = 64 * 1024,
- // Afterwards grow in chunks of 32K
+ /// Afterwards grow in chunks of 32K
LINEAR_INCREASE = 32 * 1024
};
diff --git a/ace/Name_Request_Reply.h b/ace/Name_Request_Reply.h
index efbf6b3dec0..f44142a974e 100644
--- a/ace/Name_Request_Reply.h
+++ b/ace/Name_Request_Reply.h
@@ -196,7 +196,7 @@ class ACE_Export ACE_Name_Reply
public:
enum Constants
{
- // Class-specific constant values.
+ /// Class-specific constant values.
MAX_NAME_LENGTH = MAXPATHLEN + 1
};
diff --git a/ace/Timer_Hash_T.h b/ace/Timer_Hash_T.h
index 42ef2b47a35..606abb9c489 100644
--- a/ace/Timer_Hash_T.h
+++ b/ace/Timer_Hash_T.h
@@ -254,7 +254,7 @@ private:
/// Table of BUCKETS
BUCKET **table_;
- /// Keeps track of the size of <table>
+ /// Keeps track of the size of table_
size_t table_size_;
/// Functor used for the table's timer queues