diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | apps/Gateway/Gateway/Concrete_Connection_Handlers.cpp | 1 |
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}: @@ -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"))); |