summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-09-25 18:00:04 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-09-25 18:00:04 +0000
commit7ce70916842c86a4f4b3b25e0f9ec4a0b20bd22c (patch)
treeaef22d223144fc95e7fab9734d1195b90759ce5f
parentf4d16d446e6420ecb80ccd45143ad6c9bc57ceae (diff)
downloadATCD-7ce70916842c86a4f4b3b25e0f9ec4a0b20bd22c.tar.gz
ChangeLogTag: Wed Sep 25 17:57:45 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog15
-rw-r--r--ChangeLogs/ChangeLog-03a15
-rw-r--r--ace/Basic_Stats.h6
-rw-r--r--ace/Connector.h6
-rw-r--r--ace/INET_Addr.h9
-rw-r--r--ace/OS.h2
-rw-r--r--ace/OS.i4
-rw-r--r--ace/Service_Config.h2
-rw-r--r--ace/Stats.h2
-rw-r--r--ace/TLI_Connector.cpp4
-rw-r--r--ace/Timer_Queue_T.cpp12
-rw-r--r--ace/XTI_ATM_Mcast.i8
12 files changed, 54 insertions, 31 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ee118277a6..0dae92fd67c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+Wed Sep 25 17:58:43 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl
+
+ * Basic_Stats.h:
+ * Connector.h:
+ * INET_Addr.h:
+ * OS.h:
+ * OS.i:
+ * Service_Config.h:
+ * Stats.h:
+ * Timer_Queue_T.cpp:
+ * TLI_Connector.cpp:
+ * XTI_ATM_Mcast.i:
+ Small fixes in method argument names, types, comments to fix doxygen
+ warnings and improve the generated documentation.
+
Wed Sep 25 08:44:13 2002 Ossama Othman <ossama@uci.edu>
* tests/Notify_Performance_Test.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 9ee118277a6..0dae92fd67c 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,18 @@
+Wed Sep 25 17:58:43 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl
+
+ * Basic_Stats.h:
+ * Connector.h:
+ * INET_Addr.h:
+ * OS.h:
+ * OS.i:
+ * Service_Config.h:
+ * Stats.h:
+ * Timer_Queue_T.cpp:
+ * TLI_Connector.cpp:
+ * XTI_ATM_Mcast.i:
+ Small fixes in method argument names, types, comments to fix doxygen
+ warnings and improve the generated documentation.
+
Wed Sep 25 08:44:13 2002 Ossama Othman <ossama@uci.edu>
* tests/Notify_Performance_Test.cpp:
diff --git a/ace/Basic_Stats.h b/ace/Basic_Stats.h
index 722c92ae355..bc927a271fd 100644
--- a/ace/Basic_Stats.h
+++ b/ace/Basic_Stats.h
@@ -43,13 +43,13 @@ public:
/// Record one sample.
void sample (ACE_UINT64 value);
- /// Update the values to reflect the stats in @param rhs
+ /// Update the values to reflect the stats in @a rhs.
void accumulate (const ACE_Basic_Stats &rhs);
/// Dump all the samples
/**
* Prints out the results, using @param msg as a prefix for each
- * message and scaling all the numbers by @param scale_factor.
+ * message and scaling all the numbers by @a scale_factor.
* The latter is useful because high resolution timer samples are
* acquired in clock ticks, but often presented in microseconds.
*/
@@ -74,7 +74,7 @@ private:
/// The sum of all the values
ACE_UINT64 sum_;
-
+
/// The sum of the square of all the values
ACE_UINT64 sum2_;
};
diff --git a/ace/Connector.h b/ace/Connector.h
index bf4b10d90c2..2d41b629946 100644
--- a/ace/Connector.h
+++ b/ace/Connector.h
@@ -129,7 +129,7 @@ public:
ACE_TYPENAME_ACE_PEER_CONNECTOR_PEER_ADDR;
/**
- * Initialize a connector. <flags> indicates how <SVC_HANDLER>'s
+ * Initialize a connector. @a flags indicates how <SVC_HANDLER>'s
* should be initialized prior to being activated. Right now, the
* only flag that is processed is <ACE_NONBLOCK>, which enabled
* non-blocking I/O on the <SVC_HANDLER> when it is opened.
@@ -138,7 +138,7 @@ public:
int flags = 0);
/**
- * Initialize a connector. <flags> indicates how <SVC_HANDLER>'s
+ * Initialize a connector. @a flags indicates how <SVC_HANDLER>'s
* should be initialized prior to being activated. Right now, the
* only flag that is processed is <ACE_NONBLOCK>, which enabled
* non-blocking I/O on the <SVC_HANDLER> when it is opened.
@@ -337,7 +337,7 @@ protected:
/// Cleanup the <handler_map_> and returns the appropriate
/// ACE_Svc_Tuple (which is 0 if there is no associated tuple).
- int cleanup_AST (ACE_HANDLE, AST *&);
+ int cleanup_AST (ACE_HANDLE handle, AST *&ast);
/// Implementation the <connect> methods.
virtual int connect_i (SVC_HANDLER *&svc_handler,
diff --git a/ace/INET_Addr.h b/ace/INET_Addr.h
index 841120c9c4b..0fc45bb47fb 100644
--- a/ace/INET_Addr.h
+++ b/ace/INET_Addr.h
@@ -128,11 +128,10 @@ public:
int address_family = AF_UNSPEC);
/**
- * Initializes an <ACE_INET_Addr> from a @param port_number and an
- * Internet @param ip_addr. If @param encode is non-zero then the
- * port number and IP address are converted into network byte order,
- * otherwise they are assumed to be in network byte order already and
- * are passed straight through.
+ * Initializes an <ACE_INET_Addr> from a @a port_number and an Internet
+ * @a ip_addr. If @a encode is non-zero then the port number and IP address
+ * are converted into network byte order, otherwise they are assumed to be
+ * in network byte order already and are passed straight through.
*/
int set (u_short port_number,
ACE_UINT32 ip_addr = INADDR_ANY,
diff --git a/ace/OS.h b/ace/OS.h
index aa409160e05..06278c5e183 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -4642,7 +4642,7 @@ public:
const ACE_TCHAR *symbol);
//@}
- //{@ @name A set of wrappers for stdio file operations.
+ //@{ @name A set of wrappers for stdio file operations.
static int last_error (void);
static void last_error (int);
static int set_errno_to_last_error (void);
diff --git a/ace/OS.i b/ace/OS.i
index 23b6d9b075f..056d4e0853a 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -5768,7 +5768,7 @@ ACE_INLINE struct hostent *
ACE_OS::gethostbyaddr_r (const char *addr,
int length,
int type,
- hostent *result,
+ struct hostent *result,
ACE_HOSTENT_DATA buffer,
int *h_errnop)
{
@@ -5846,7 +5846,7 @@ ACE_OS::gethostbyaddr_r (const char *addr,
ACE_INLINE struct hostent *
ACE_OS::gethostbyname_r (const char *name,
- hostent *result,
+ struct hostent *result,
ACE_HOSTENT_DATA buffer,
int *h_errnop)
{
diff --git a/ace/Service_Config.h b/ace/Service_Config.h
index 98cc4eced9e..0ac4d5210f0 100644
--- a/ace/Service_Config.h
+++ b/ace/Service_Config.h
@@ -218,7 +218,7 @@ public:
ACE_TCHAR *argv[],
const ACE_TCHAR *logger_key = ACE_DEFAULT_LOGGER_KEY,
int ignore_static_svcs = 1,
- int ignore_default_svc_conf = 0,
+ int ignore_default_svc_conf_file = 0,
int ignore_debug_flag = 0);
/// Perform user-specified close activities and remove dynamic
diff --git a/ace/Stats.h b/ace/Stats.h
index 5f2461a5faa..864132a57a2 100644
--- a/ace/Stats.h
+++ b/ace/Stats.h
@@ -235,7 +235,7 @@ public:
/// Store one sample
void sample (ACE_UINT64 throughput, ACE_UINT64 latency);
- /// Update the values to reflect the stats in @param throughput
+ /// Update the values to reflect the stats in @a throughput
void accumulate (const ACE_Throughput_Stats &throughput);
/// Print down the stats
diff --git a/ace/TLI_Connector.cpp b/ace/TLI_Connector.cpp
index 49af71eadcb..53491547734 100644
--- a/ace/TLI_Connector.cpp
+++ b/ace/TLI_Connector.cpp
@@ -41,8 +41,8 @@ ACE_TLI_Connector::connect (ACE_TLI_Stream &new_stream,
const char device[],
struct t_info *info,
int rwf,
- netbuf *udata,
- netbuf *opt)
+ struct netbuf *udata,
+ struct netbuf *opt)
{
ACE_TRACE ("ACE_TLI_Connector::connect");
int result = 0;
diff --git a/ace/Timer_Queue_T.cpp b/ace/Timer_Queue_T.cpp
index 68cb30eaa68..2327c64b532 100644
--- a/ace/Timer_Queue_T.cpp
+++ b/ace/Timer_Queue_T.cpp
@@ -299,9 +299,7 @@ ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::~ACE_Event_Handler_Handle_Tim
}
template <class ACE_LOCK> int
-ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::timeout (ACE_Timer_Queue_T<ACE_Event_Handler *,
- ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>,
- ACE_LOCK> &timer_queue,
+ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::timeout (TIMER_QUEUE &timer_queue,
ACE_Event_Handler *handler,
const void *act,
const ACE_Time_Value &cur_time)
@@ -314,9 +312,7 @@ ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::timeout (ACE_Timer_Queue_T<AC
}
template <class ACE_LOCK> int
-ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::cancellation (ACE_Timer_Queue_T<ACE_Event_Handler *,
- ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>,
- ACE_LOCK> &timer_queue,
+ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::cancellation (TIMER_QUEUE &timer_queue,
ACE_Event_Handler *handler)
{
ACE_UNUSED_ARG (timer_queue);
@@ -328,9 +324,7 @@ ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::cancellation (ACE_Timer_Queue
}
template <class ACE_LOCK> int
-ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::deletion (ACE_Timer_Queue_T<ACE_Event_Handler *,
- ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>,
- ACE_LOCK> &timer_queue,
+ACE_Event_Handler_Handle_Timeout_Upcall<ACE_LOCK>::deletion (TIMER_QUEUE &timer_queue,
ACE_Event_Handler *handler,
const void *arg)
{
diff --git a/ace/XTI_ATM_Mcast.i b/ace/XTI_ATM_Mcast.i
index 0084c64a8da..895f37f30ff 100644
--- a/ace/XTI_ATM_Mcast.i
+++ b/ace/XTI_ATM_Mcast.i
@@ -14,8 +14,8 @@ ACE_XTI_ATM_Mcast::ACE_XTI_ATM_Mcast (ACE_TLI_Stream &new_stream,
const char device[],
struct t_info *info,
int rw_flag,
- netbuf *udata,
- netbuf *opt)
+ struct netbuf *udata,
+ struct netbuf *opt)
{
ACE_TRACE ("ACE_XTI_ATM_Mcast::ACE_XTI_ATM_Mcast");
if (this->connect (new_stream, remote_sap, timeout, local_sap, reuse_addr,
@@ -43,8 +43,8 @@ ACE_XTI_ATM_Mcast::connect (ACE_TLI_Stream &new_stream,
const char device[],
struct t_info *info,
int rw_flag,
- netbuf *udata,
- netbuf *opt)
+ struct netbuf *udata,
+ struct netbuf *opt)
{
ACE_TRACE ("ACE_XTI_ATM_Mcast::connect");
return ACE_TLI_Connector::connect(new_stream,