summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-07-11 20:34:05 +0000
committerSteve Huston <shuston@riverace.com>2002-07-11 20:34:05 +0000
commitd84c481f55354bc3525dfa9e7c13b4be70e19dc2 (patch)
tree3ca8142955fcd5c1bcf3c9f09929caf80c9c134d
parent8701c662351d56735a3b11b275e99537c5c35d47 (diff)
downloadATCD-d84c481f55354bc3525dfa9e7c13b4be70e19dc2.tar.gz
ChangeLogTag:Thu Jul 11 16:28:24 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--tests/Proactor_Scatter_Gather_Test.cpp2
3 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4a29688ebdf..184952b1ca8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Jul 11 16:28:24 2002 Steve Huston <shuston@riverace.com>
+
+ * tests/Proactor_Scatter_Gather_Test.cpp: Changed Writer to derive
+ from ACE_Handler, not ACE_Service_Handler. It's not the target of
+ an asynch connection factory, and declares an open() method that
+ hides the one in ACE_Service_Handler.
+
Thu Jul 11 16:15:49 2002 Steve Huston <shuston@riverace.com>
* examples/C++NPv2/SR_Configurable_Logging_Server.dsp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 4a29688ebdf..184952b1ca8 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Thu Jul 11 16:28:24 2002 Steve Huston <shuston@riverace.com>
+
+ * tests/Proactor_Scatter_Gather_Test.cpp: Changed Writer to derive
+ from ACE_Handler, not ACE_Service_Handler. It's not the target of
+ an asynch connection factory, and declares an open() method that
+ hides the one in ACE_Service_Handler.
+
Thu Jul 11 16:15:49 2002 Steve Huston <shuston@riverace.com>
* examples/C++NPv2/SR_Configurable_Logging_Server.dsp:
diff --git a/tests/Proactor_Scatter_Gather_Test.cpp b/tests/Proactor_Scatter_Gather_Test.cpp
index 556ffe79f7c..7220de98eae 100644
--- a/tests/Proactor_Scatter_Gather_Test.cpp
+++ b/tests/Proactor_Scatter_Gather_Test.cpp
@@ -305,7 +305,7 @@ private:
ACE_Message_Block *partial_chunk_;
};
-class Writer : public ACE_Service_Handler
+class Writer : public ACE_Handler
{
friend class Receiver;