summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/ace/Message_Queue_T.h16
2 files changed, 13 insertions, 8 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 89a91063428..2f1ef1e74b6 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Fri Aug 17 13:13:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Message_Queue_T.h:
+ Doxygen updates
+
Fri Aug 17 11:44:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Atomic_Op_Sparc.c:
diff --git a/ACE/ace/Message_Queue_T.h b/ACE/ace/Message_Queue_T.h
index ff6a8b8969c..94528779e72 100644
--- a/ACE/ace/Message_Queue_T.h
+++ b/ACE/ace/Message_Queue_T.h
@@ -991,11 +991,11 @@ public:
/**
* Initialize an ACE_Message_Queue_Ex.
*
- * @param hwm High water mark. Determines how many bytes can be stored in a
- * queue before it's considered full. Supplier threads must block
- * until the queue is no longer full.
- * @param lwm Low water mark. Determines how many bytes must be in the queue
- * before supplier threads are allowed to enqueue additional
+ * @param high_water_mark High water mark. Determines how many bytes can be
+ * stored in a queue before it's considered full. Supplier threads
+ * must block until the queue is no longer full.
+ * @param low_water_mark Low water mark. Determines how many bytes must be in
+ * the queue before supplier threads are allowed to enqueue additional
* data. By default, the @a hwm equals @a lwm, which means
* that suppliers will be able to enqueue new messages as soon as
* a consumer removes any message from the queue. Making the low
@@ -1009,7 +1009,7 @@ public:
*/
ACE_Message_Queue_Ex (size_t high_water_mark = ACE_Message_Queue_Base::DEFAULT_HWM,
size_t low_water_mark = ACE_Message_Queue_Base::DEFAULT_LWM,
- ACE_Notification_Strategy * = 0);
+ ACE_Notification_Strategy * ns = 0);
virtual int open (size_t hwm = ACE_Message_Queue_Base::DEFAULT_HWM,
size_t lwm = ACE_Message_Queue_Base::DEFAULT_LWM,
ACE_Notification_Strategy * = 0);
@@ -1180,8 +1180,8 @@ public:
* FIFO order for items with the same priority) and return a pointer
* to it.
*
- * @param first_item Reference to an ACE_MESSAGE_TYPE * that will
- * be set to the address of the dequeued item.
+ * @param dequeued Reference to an ACE_MESSAGE_TYPE * that will
+ * be set to the address of the dequeued item.
* @param timeout The absolute time the caller will wait until
* for an item to be dequeued.
*