summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-06-18 18:32:58 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-06-18 18:32:58 +0000
commit427b19092d493cf7069ea5d3dd6d09888a831a53 (patch)
treead0880a3a1d9f1c857b36a69a92ee4c19b5101fa
parent6ceb20f11b609d45c6bc5687808178b4bd62e826 (diff)
downloadATCD-427b19092d493cf7069ea5d3dd6d09888a831a53.tar.gz
ChangeLogTag: Mon Jun 18 13:31:38 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/tao/Asynch_Reply_Dispatcher.cpp1
-rw-r--r--TAO/tao/DynamicInterface/DII_Reply_Dispatcher.cpp2
-rw-r--r--TAO/tao/GIOP_Message_Base.cpp4
-rw-r--r--TAO/tao/Synch_Reply_Dispatcher.cpp2
-rw-r--r--TAO/tao/Transport.cpp1
6 files changed, 15 insertions, 4 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index cff70c321ef..dbff6978f1e 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Mon Jun 18 13:31:38 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/Asynch_Reply_Dispatcher.cpp (dispatch_reply):
+ * tao/Synch_Reply_Dispatcher.cpp:
+ * tao/GIOP_Message_Base.cpp:
+ * tao/Transport.cpp:
+ * tao/DynamicInterface/DII_Reply_Dispatcher.cpp: Fixed warnings in
+ g++ builds.
+
Sat Jun 17 17:46:23 2001 Balachandran Natarajan <bala@cs.wustl.edu>
This set of changes comes with complete revamping of the previous
diff --git a/TAO/tao/Asynch_Reply_Dispatcher.cpp b/TAO/tao/Asynch_Reply_Dispatcher.cpp
index 110df977c28..1685b06591e 100644
--- a/TAO/tao/Asynch_Reply_Dispatcher.cpp
+++ b/TAO/tao/Asynch_Reply_Dispatcher.cpp
@@ -112,6 +112,7 @@ TAO_Asynch_Reply_Dispatcher::dispatch_reply (
ACE_Data_Block *db =
this->reply_cdr_.clone_from (params.input_cdr_);
+ ACE_UNUSED_ARG (db);
// Steal the buffer, that way we don't do any unnecesary copies of
// this data.
CORBA::ULong max = params.svc_ctx_.maximum ();
diff --git a/TAO/tao/DynamicInterface/DII_Reply_Dispatcher.cpp b/TAO/tao/DynamicInterface/DII_Reply_Dispatcher.cpp
index b4449b1deaf..91524c6e71d 100644
--- a/TAO/tao/DynamicInterface/DII_Reply_Dispatcher.cpp
+++ b/TAO/tao/DynamicInterface/DII_Reply_Dispatcher.cpp
@@ -48,6 +48,8 @@ TAO_DII_Deferred_Reply_Dispatcher::dispatch_reply (
ACE_Data_Block *db =
this->reply_cdr_.clone_from (params.input_cdr_);
+ ACE_UNUSED_ARG (db);
+
// Steal the buffer, that way we don't do any unnecesary copies of
// this data.
CORBA::ULong max = params.svc_ctx_.maximum ();
diff --git a/TAO/tao/GIOP_Message_Base.cpp b/TAO/tao/GIOP_Message_Base.cpp
index ab01a84ac98..048436f61f1 100644
--- a/TAO/tao/GIOP_Message_Base.cpp
+++ b/TAO/tao/GIOP_Message_Base.cpp
@@ -356,10 +356,8 @@ TAO_GIOP_Message_Base::byte_order (void)
}
int
-TAO_GIOP_Message_Base::is_message_complete (ACE_Message_Block &incoming)
+TAO_GIOP_Message_Base::is_message_complete (ACE_Message_Block & /*incoming*/)
{
-
-
// @@Bala: Implement other cases
return 0;
}
diff --git a/TAO/tao/Synch_Reply_Dispatcher.cpp b/TAO/tao/Synch_Reply_Dispatcher.cpp
index d6844859755..32997e618e1 100644
--- a/TAO/tao/Synch_Reply_Dispatcher.cpp
+++ b/TAO/tao/Synch_Reply_Dispatcher.cpp
@@ -65,6 +65,8 @@ TAO_Synch_Reply_Dispatcher::dispatch_reply (
ACE_Data_Block *db =
this->reply_cdr_.clone_from (params.input_cdr_);
+ ACE_UNUSED_ARG (db);
+
if (this->wait_strategy_ != 0)
{
if (this->wait_strategy_->reply_dispatched (
diff --git a/TAO/tao/Transport.cpp b/TAO/tao/Transport.cpp
index e0907921053..152bb6ba54d 100644
--- a/TAO/tao/Transport.cpp
+++ b/TAO/tao/Transport.cpp
@@ -935,7 +935,6 @@ TAO_Transport::consolidate_message (ACE_Message_Block &incoming,
{
// The write pointer which will be used for reading data from the
// socket.
- char *wr_ptr = 0;
if (!this->incoming_message_queue_.is_complete_message ())
{
return this->consolidate_message_queue (incoming,