summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-09-04 17:52:09 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-09-04 17:52:09 +0000
commitadbbe1b5295c43840115bd84dd6f403712718dc1 (patch)
tree1064517ee2d03a9485a6a4a207a3f830d5f6ae2f
parentba43d83d17dccebb786c135271971cfb2a5e5127 (diff)
downloadATCD-adbbe1b5295c43840115bd84dd6f403712718dc1.tar.gz
ChangeLogTag: Tue Sep 4 12:46:50 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--ace/ACE.cpp7
4 files changed, 21 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 1ecd6b0b734..368abbc850f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Sep 4 12:46:50 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/ACE.cpp: Reverted this change "Tue Sep 4 07:37:17 2001
+ Balachandran Natarajan <bala@cs.wustl.edu>". Thanks to Irfan
+ for pointing that this change, changes the semantics of the
+ methods.
+
Tue Sep 4 09:14:36 2001 Chad Elliott <elliott_c@ociweb.com>
* ace/CDR_Stream.i:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 1ecd6b0b734..368abbc850f 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Tue Sep 4 12:46:50 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/ACE.cpp: Reverted this change "Tue Sep 4 07:37:17 2001
+ Balachandran Natarajan <bala@cs.wustl.edu>". Thanks to Irfan
+ for pointing that this change, changes the semantics of the
+ methods.
+
Tue Sep 4 09:14:36 2001 Chad Elliott <elliott_c@ociweb.com>
* ace/CDR_Stream.i:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 1ecd6b0b734..368abbc850f 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Tue Sep 4 12:46:50 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/ACE.cpp: Reverted this change "Tue Sep 4 07:37:17 2001
+ Balachandran Natarajan <bala@cs.wustl.edu>". Thanks to Irfan
+ for pointing that this change, changes the semantics of the
+ methods.
+
Tue Sep 4 09:14:36 2001 Chad Elliott <elliott_c@ociweb.com>
* ace/CDR_Stream.i:
diff --git a/ace/ACE.cpp b/ace/ACE.cpp
index cb299da540d..45514732050 100644
--- a/ace/ACE.cpp
+++ b/ace/ACE.cpp
@@ -966,13 +966,6 @@ ACE::recv_n_i (ACE_HANDLE handle,
// Check EOF.
if (n == 0)
{
- // If the bytes received is greater than zero, ie. if you
- // had received anything in the first iteration, then just
- // return the bytes transferred. Thanks to Eyal Neuman for
- // pointing this out.
- if (bytes_transferred > 0)
- return bytes_transferred;
-
return 0;
}
// Check for other errors.