summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-05 16:30:15 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-05 16:30:15 +0000
commitab6c4c4699b53565286db450629c2b5e2a448310 (patch)
treea5de9b5d38178a047e316c0dab92c9a7c0fe16c0 /TAO
parentaf80a743288651d03b974cd8620ad18912cea240 (diff)
downloadATCD-ab6c4c4699b53565286db450629c2b5e2a448310.tar.gz
ChangeLogTag: Tue Sep 5 11:26:56 2000 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a7
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp6
2 files changed, 13 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 2f1ab2811b9..dc77fcbfa93 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Tue Sep 5 11:26:56 2000 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * be/be_visitor_operation/operation_cs.cpp: Added a line in the
+ generated code to reset the reply_received field in the
+ Invocation class. This was added on <Fri Jul 21 17:54:55 2000
+ <bala@cs.wustl.edu> but seem to have dissappeared in between.
+
Tue Sep 5 10:51:53 2000 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/ESF/ESF_Copy_On_Read.cpp
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp b/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp
index b405dc1a7c8..70760239b1c 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/operation_cs.cpp
@@ -457,6 +457,12 @@ be_visitor_operation_cs::gen_marshal_and_invoke (be_operation *node,
<< "for (;;)" << be_nl
<< "{" << be_idt_nl;
+ if (node->flags () != AST_Operation::OP_oneway)
+ {
+ *os << be_nl;
+ *os << "_tao_call.reset_reply_received();\n";
+ }
+
*os << "_tao_call.start (ACE_TRY_ENV);\n";
// check if there is an exception
if (this->gen_check_interceptor_exception (bt) == -1)