summaryrefslogtreecommitdiff
path: root/ACE/ace/Message_Queue_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-08-17 13:13:33 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-08-17 13:13:33 +0000
commit9aa0040c4a20c10300921a58fb285e19bb1961c8 (patch)
treebf79b5984e194809c31870fe9048a5d429a84f73 /ACE/ace/Message_Queue_T.h
parent756b7dd100fad92a12c9a4e2691d752cc4c4d62b (diff)
downloadATCD-9aa0040c4a20c10300921a58fb285e19bb1961c8.tar.gz
Fri Aug 17 13:13:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Message_Queue_T.h')
-rw-r--r--ACE/ace/Message_Queue_T.h16
1 files changed, 8 insertions, 8 deletions
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.
*