summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2005-05-20 15:10:27 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2005-05-20 15:10:27 +0000
commitcffbb736e751044586e6fe33f44b27bc154a96fe (patch)
treed3dc3961559f650d45058e38f8a3ec7607fb4b29
parent19c79c552e3eacdd169bcdcea31a83c1ee5fab55 (diff)
downloadATCD-cffbb736e751044586e6fe33f44b27bc154a96fe.tar.gz
ChangeLogTag:Thu May 19 19:10:30 2005 Douglas C. Schmidt <schmidt@cs.wustl.edu>
-rw-r--r--ChangeLog9
-rw-r--r--THANKS1
-rw-r--r--apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp1
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eaa35d48e88..aa346582c75 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Thu May 19 19:10:30 2005 Douglas C. Schmidt <schmidt@cs.wustl.edu>
+
+ * apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp (handle_output): Removed
+
+ ACE_ASSERT (errno == EWOULDBLOCK);
+
+ since errno may have been changed by this point. Thanks to Ro
+ Madhavan <ro_madhavan@sify.com> for reporting this.
+
Thu May 19 18:50:23 2005 Steve Huston <shuston@riverace.com>
* ace/ICMP_Socket.{h cpp inl}:
diff --git a/THANKS b/THANKS
index b02a745b890..ee1ce7a50bc 100644
--- a/THANKS
+++ b/THANKS
@@ -1983,6 +1983,7 @@ Vemund Handeland <vemund dot handeland at fantoft dot no>
Mario Di Giacomo <mdigiacomo at anteon dot com>
Raoul Gough <Raoul dot Gough at liffe dot com>
Aaron <crackajazz at gmail dot com>
+Rohini Madhavan <ro_madhavan at sify dot com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's. Paul devised the recursive Makefile
diff --git a/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp b/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp
index f8ea3a38821..e6ac36ba1fe 100644
--- a/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp
+++ b/apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp
@@ -193,7 +193,6 @@ Consumer_Handler::handle_output (ACE_HANDLE)
}
case 0: // Partial Send - we got flow controlled by the receiver
{
- ACE_ASSERT (errno == EWOULDBLOCK);
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("%D Partial Send due to flow control")
ACE_TEXT ("- scheduling new wakeup with reactor\n")));