summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-04-02 12:42:55 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-04-02 12:42:55 +0000
commitf825aa10bf2984a8d713e444cad2a23819caa664 (patch)
tree0de0316bcce59e5f477e9385f432c7aa75134dd7
parent39063bbc82444e7768935f5d890665fd544c66da (diff)
downloadATCD-f825aa10bf2984a8d713e444cad2a23819caa664.tar.gz
ChangeLogTag:Sun Apr 1 17:20:22 2001 Darrell Brunsch <brunsch@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a6
-rw-r--r--TAO/tests/AMI/README10
-rw-r--r--THANKS1
-rw-r--r--ace/Message_Queue_T.cpp2
4 files changed, 11 insertions, 8 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 415633815db..cde69702d7e 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Mon Apr 2 07:37:24 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
+
+ * tests/AMI/README (simple-client): Reworded this so that it's
+ correct. Thanks to Gautam Thaker <gthaker@atl.lmco.com> for
+ reporting this.
+
Sun Apr 01 22:02:20 2001 Carlos O'Ryan <coryan@uci.edu>
* TAOACE.dsw:
diff --git a/TAO/tests/AMI/README b/TAO/tests/AMI/README
index d9bca25e039..04117a71d7d 100644
--- a/TAO/tests/AMI/README
+++ b/TAO/tests/AMI/README
@@ -31,11 +31,9 @@ Issues <i> number of asynchronous requests. Then it issues a
synchronous request, which collects the replies.
If you choose Muxed Transport configuration, then the synchronous
-request will collect all the asynchronous replies also, since the
-replies will arrive in order.
-
-But in the Exclusive Transport, the synchronous request might now
-collect all the AMI replies. It might return as soon as its reply
-arrives.
+request will collect all the asynchronous replies also, since the
+replies will arrive in order. In the Exclusive Transport, however,
+the synchronous request might not collect all the AMI replies.
+Instead, it might return as soon as its reply arrives.
diff --git a/THANKS b/THANKS
index 7caf7fd6dc5..2dbf9f26f15 100644
--- a/THANKS
+++ b/THANKS
@@ -1101,7 +1101,6 @@ Sathish Tiptur <Sathish.Tiptur@geind.ge.com>
Michael Rushton <miker@mbmnz.co.nz>
Arno Pernozzoli <a.bernicchia@tiscalinet.it>
Calum Mitchell <calum.mitchell@cp.net>
-Pedro Ferreira <pedro.ferreira@inescporto.pt>
Jerry Odenwelder <jerryo@atl.fundtech.com>
Kent Stewart <kbstew99@hotmail.com>
Alexander Kogan <jk@kogan.nnov.ru>
diff --git a/ace/Message_Queue_T.cpp b/ace/Message_Queue_T.cpp
index e271d3402f0..8bf5cafe814 100644
--- a/ace/Message_Queue_T.cpp
+++ b/ace/Message_Queue_T.cpp
@@ -553,7 +553,7 @@ ACE_Message_Queue<ACE_SYNCH_USE>::enqueue_head_i (ACE_Message_Block *new_item)
new_item->next (this->head_);
if (this->head_ != 0)
- this->head_->prev (new_item);
+ this->head_->prev (new_item);
else
this->tail_ = new_item;