summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2003-01-22 07:32:56 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2003-01-22 07:32:56 +0000
commitaa715f583972c1ebcf85572e5cb294b05f33f0f5 (patch)
treebf4cf34c8555e5049fcfd60f5f0ffca70e9aa6bc
parent44ae50d1fa8e09072f253000aded34926afa6f41 (diff)
downloadATCD-aa715f583972c1ebcf85572e5cb294b05f33f0f5.tar.gz
ChangeLogTag:Wed Jan 22 01:24:51 2003 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--ace/Message_Queue_T.h20
3 files changed, 20 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 444168d0933..8f1ff187557 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jan 22 01:24:51 2003 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/Message_Queue_T.h: Corrected the documentation for ACE_Message_Block_Ex
+ so it says ACE_MESSAGE_TYPE rather than ACE_Message_Block.
+
Tue Jan 21 21:44:04 2003 Nanbor Wang <nanbor@cs.wustl.edu>
* ACEXML/examples/SAXPrint/broken.xml: Added a new broken XML file
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 444168d0933..8f1ff187557 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Wed Jan 22 01:24:51 2003 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/Message_Queue_T.h: Corrected the documentation for ACE_Message_Block_Ex
+ so it says ACE_MESSAGE_TYPE rather than ACE_Message_Block.
+
Tue Jan 21 21:44:04 2003 Nanbor Wang <nanbor@cs.wustl.edu>
* ACEXML/examples/SAXPrint/broken.xml: Added a new broken XML file
diff --git a/ace/Message_Queue_T.h b/ace/Message_Queue_T.h
index 140f03d6064..1e12ba469ef 100644
--- a/ace/Message_Queue_T.h
+++ b/ace/Message_Queue_T.h
@@ -963,7 +963,7 @@ public:
// elapses, (in which case errno = EWOULDBLOCK).
/**
- * Retrieve the first <ACE_Message_Block> without removing it. Note
+ * Retrieve the first <ACE_MESSAGE_TYPE> without removing it. Note
* that <timeout> uses <{absolute}> time rather than <{relative}>
* time. If the <timeout> elapses without receiving a message -1 is
* returned and <errno> is set to <EWOULDBLOCK>. If the queue is
@@ -975,7 +975,7 @@ public:
ACE_Time_Value *timeout = 0);
/**
- * Enqueue an <ACE_Message_Block *> into the <Message_Queue> in
+ * Enqueue an <ACE_MESSAGE_TYPE *> into the <Message_Queue> in
* accordance with its <msg_priority> (0 is lowest priority). FIFO
* order is maintained when messages of the same priority are
* inserted consecutively. Note that <timeout> uses <{absolute}>
@@ -989,7 +989,7 @@ public:
ACE_Time_Value *timeout = 0);
/**
- * Enqueue an <ACE_Message_Block *> into the <Message_Queue> in
+ * Enqueue an <ACE_MESSAGE_TYPE *> into the <Message_Queue> in
* accordance with its <msg_deadline_time>. FIFO
* order is maintained when messages of the same deadline time are
* inserted consecutively. Note that <timeout> uses <{absolute}>
@@ -1012,7 +1012,7 @@ public:
ACE_Time_Value *timeout = 0);
/**
- * Enqueue an <ACE_Message_Block *> at the end of the queue. Note
+ * Enqueue an <ACE_MESSAGE_TYPE *> at the end of the queue. Note
* that <timeout> uses <{absolute}> time rather than <{relative}>
* time. If the <timeout> elapses without receiving a message -1 is
* returned and <errno> is set to <EWOULDBLOCK>. If the queue is
@@ -1024,7 +1024,7 @@ public:
ACE_Time_Value *timeout = 0);
/**
- * Enqueue an <ACE_Message_Block *> at the head of the queue. Note
+ * Enqueue an <ACE_MESSAGE_TYPE *> at the head of the queue. Note
* that <timeout> uses <{absolute}> time rather than <{relative}>
* time. If the <timeout> elapses without receiving a message -1 is
* returned and <errno> is set to <EWOULDBLOCK>. If the queue is
@@ -1041,7 +1041,7 @@ public:
// This method is an alias for the following <dequeue_head> method.
/**
- * Dequeue and return the <ACE_Message_Block *> at the head of the
+ * Dequeue and return the <ACE_MESSAGE_TYPE *> at the head of the
* queue. Note that <timeout> uses <{absolute}> time rather than
* <{relative}> time. If the <timeout> elapses without receiving a
* message -1 is returned and <errno> is set to <EWOULDBLOCK>. If
@@ -1053,7 +1053,7 @@ public:
ACE_Time_Value *timeout = 0);
/**
- * Dequeue and return the <ACE_Message_Block *> that has the lowest
+ * Dequeue and return the <ACE_MESSAGE_TYPE *> that has the lowest
* priority. Note that <timeout> uses <{absolute}> time rather than
* <{relative}> time. If the <timeout> elapses without receiving a
* message -1 is returned and <errno> is set to <EWOULDBLOCK>. If
@@ -1065,7 +1065,7 @@ public:
ACE_Time_Value *timeout = 0);
/**
- * Dequeue and return the <ACE_Message_Block *> at the tail of the
+ * Dequeue and return the <ACE_MESSAGE_TYPE *> at the tail of the
* queue. Note that <timeout> uses <{absolute}> time rather than
* <{relative}> time. If the <timeout> elapses without receiving a
* message -1 is returned and <errno> is set to <EWOULDBLOCK>. If
@@ -1077,7 +1077,7 @@ public:
ACE_Time_Value *timeout = 0);
/**
- * Dequeue and return the <ACE_Message_Block *> with the lowest
+ * Dequeue and return the <ACE_MESSAGE_TYPE *> with the lowest
* deadline time. Note that <timeout> uses <{absolute}> time rather than
* <{relative}> time. If the <timeout> elapses without receiving a
* message -1 is returned and <errno> is set to <EWOULDBLOCK>. If
@@ -1142,7 +1142,7 @@ public:
/**
* Set the low watermark, which determines how many bytes must be in
* the queue before supplier threads are allowed to enqueue
- * additional <ACE_Message_Block>s.
+ * additional <ACE_MESSAGE_TYPE>s.
*/
virtual void low_water_mark (size_t lwm);