summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-11 15:09:11 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-11 15:09:11 +0000
commit00fcbcb8abb05c149cef6d81e5ded823af6ad367 (patch)
treea1f22dbe647b3b985d1c92283843d4bbe72e37f5
parentab60b0dd4394ea081dc27a9c67b5fab79f053e8c (diff)
downloadATCD-00fcbcb8abb05c149cef6d81e5ded823af6ad367.tar.gz
ChangeLogTag: Mon Sep 11 10:08:38 2000 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog9
-rw-r--r--ChangeLogs/ChangeLog-02a9
-rw-r--r--ChangeLogs/ChangeLog-03a9
-rw-r--r--ace/Service_Manager.cpp4
4 files changed, 23 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index e3fc9953a56..ba941635e8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 11 10:08:38 2000 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Service_Manager.cpp (handle_input): Missing semicolon in a
+ do-while loop.
+
Mon Sep 11 08:10:21 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Service_Manager.cpp: There was a problem with handle_input()
@@ -8,8 +13,8 @@ Mon Sep 11 08:10:21 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* tests: Added a new Borland-specific makefile for the ACE tests.
Thanks to Johnny Willemsen <Johnny.Willemsen@meco.nl> for
- contributing this.
-
+ contributing this.
+
Sun Sep 10 14:58:36 2000 Carlos O'Ryan <coryan@uci.edu>
* netsvcs/clients/Logger/Makefile.bor:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e3fc9953a56..ba941635e8a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon Sep 11 10:08:38 2000 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Service_Manager.cpp (handle_input): Missing semicolon in a
+ do-while loop.
+
Mon Sep 11 08:10:21 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Service_Manager.cpp: There was a problem with handle_input()
@@ -8,8 +13,8 @@ Mon Sep 11 08:10:21 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* tests: Added a new Borland-specific makefile for the ACE tests.
Thanks to Johnny Willemsen <Johnny.Willemsen@meco.nl> for
- contributing this.
-
+ contributing this.
+
Sun Sep 10 14:58:36 2000 Carlos O'Ryan <coryan@uci.edu>
* netsvcs/clients/Logger/Makefile.bor:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e3fc9953a56..ba941635e8a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon Sep 11 10:08:38 2000 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Service_Manager.cpp (handle_input): Missing semicolon in a
+ do-while loop.
+
Mon Sep 11 08:10:21 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Service_Manager.cpp: There was a problem with handle_input()
@@ -8,8 +13,8 @@ Mon Sep 11 08:10:21 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* tests: Added a new Borland-specific makefile for the ACE tests.
Thanks to Johnny Willemsen <Johnny.Willemsen@meco.nl> for
- contributing this.
-
+ contributing this.
+
Sun Sep 10 14:58:36 2000 Carlos O'Ryan <coryan@uci.edu>
* netsvcs/clients/Logger/Makefile.bor:
diff --git a/ace/Service_Manager.cpp b/ace/Service_Manager.cpp
index f54e8162d00..b9b93680a61 100644
--- a/ace/Service_Manager.cpp
+++ b/ace/Service_Manager.cpp
@@ -271,9 +271,9 @@ ACE_Service_Manager::handle_input (ACE_HANDLE)
// Keep looping until we actually get the request. Note that Win32
// sets the socket into non-blocking mode, so we may need to loop if
// the system is heavily loaded.
- do
+ do
result = client_stream_.recv (request, sizeof request);
- while (result == -1 && errno == EWOULDBLOCK)
+ while (result == -1 && errno == EWOULDBLOCK);
switch (result)
{