summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-10-28 21:58:45 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-10-28 21:58:45 +0000
commit2499920accb2861e894419aea602b9370740add7 (patch)
treeacd34692a14c7e695cb40b1974b617f6bf6b37da
parentd5ff8350c68bfbe2555261f9387af16c99a83c5b (diff)
downloadATCD-2499920accb2861e894419aea602b9370740add7.tar.gz
ChangeLogTag:Tue Oct 28 15:53:42 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog14
-rw-r--r--TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp4
-rw-r--r--TAO/tao/DynamicInterface/DII_Invocation_Adapter.h4
-rw-r--r--TAO/tao/Invocation_Adapter.h2
-rw-r--r--TAO/tao/Invocation_Adapter.inl2
-rw-r--r--TAO/tao/Messaging/Asynch_Invocation_Adapter.cpp2
-rw-r--r--TAO/tao/Messaging/Asynch_Invocation_Adapter.h2
7 files changed, 22 insertions, 8 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e792c3181b3..781184316fe 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,17 @@
+Tue Oct 28 15:53:42 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tao/Invocation_Adapter.h:
+ * tao/Invocation_Adapter.inl:
+ * tao/Invocation_Adapter.h:
+ * tao/Invocation_Adapter.inl:
+ * tao/DynamicInterface/DII_Invocation_Adapter.cpp:
+ * tao/DynamicInterface/DII_Invocation_Adapter.h:
+ * tao/Messaging/Asynch_Invocation_Adapter.cpp:
+ * tao/Messaging/Asynch_Invocation_Adapter.h
+
+ Added const qualifier to the operation names. Not sure how this
+ got missed. Thought I had done this once before!
+
Tue Oct 28 14:06:52 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* orbsvcs/tests/AVStreams/Latency/pong.cpp:
diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
index 37fddb7f8bc..7f02ee53009 100644
--- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
+++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.cpp
@@ -18,7 +18,7 @@ namespace TAO
DII_Invocation_Adapter::DII_Invocation_Adapter (CORBA::Object *target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
CORBA::ExceptionList *excp,
CORBA::Request *r,
@@ -83,7 +83,7 @@ namespace TAO
CORBA::Object *target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *b,
TAO_ORB_Core *oc,
diff --git a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h
index 635572240f1..c9148b0ae76 100644
--- a/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h
+++ b/TAO/tao/DynamicInterface/DII_Invocation_Adapter.h
@@ -84,7 +84,7 @@ namespace TAO
DII_Invocation_Adapter (CORBA::Object *target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
CORBA::ExceptionList *exception,
CORBA::Request *r,
@@ -127,7 +127,7 @@ namespace TAO
CORBA::Object *target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *b,
TAO_ORB_Core *oc,
diff --git a/TAO/tao/Invocation_Adapter.h b/TAO/tao/Invocation_Adapter.h
index c59488bc116..e73e3aa7173 100644
--- a/TAO/tao/Invocation_Adapter.h
+++ b/TAO/tao/Invocation_Adapter.h
@@ -104,7 +104,7 @@ namespace TAO
Invocation_Adapter (CORBA::Object_ptr target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *cpb,
TAO::Invocation_Type type = TAO_TWOWAY_INVOCATION,
diff --git a/TAO/tao/Invocation_Adapter.inl b/TAO/tao/Invocation_Adapter.inl
index cf0529eca10..9dff7a8f320 100644
--- a/TAO/tao/Invocation_Adapter.inl
+++ b/TAO/tao/Invocation_Adapter.inl
@@ -7,7 +7,7 @@ namespace TAO
CORBA::Object *target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *p,
Invocation_Type type,
diff --git a/TAO/tao/Messaging/Asynch_Invocation_Adapter.cpp b/TAO/tao/Messaging/Asynch_Invocation_Adapter.cpp
index 2e6e2cf2d46..79674ecfc5f 100644
--- a/TAO/tao/Messaging/Asynch_Invocation_Adapter.cpp
+++ b/TAO/tao/Messaging/Asynch_Invocation_Adapter.cpp
@@ -22,7 +22,7 @@ namespace TAO
Asynch_Invocation_Adapter::Asynch_Invocation_Adapter (CORBA::Object *target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *p,
Invocation_Mode m)
diff --git a/TAO/tao/Messaging/Asynch_Invocation_Adapter.h b/TAO/tao/Messaging/Asynch_Invocation_Adapter.h
index 9e3e476ce94..fb9203150f6 100644
--- a/TAO/tao/Messaging/Asynch_Invocation_Adapter.h
+++ b/TAO/tao/Messaging/Asynch_Invocation_Adapter.h
@@ -57,7 +57,7 @@ namespace TAO
CORBA::Object *target,
Argument **args,
int arg_number,
- char *operation,
+ const char *operation,
int op_len,
Collocation_Proxy_Broker *b,
TAO::Invocation_Mode mode = TAO_ASYNCHRONOUS_CALLBACK_INVOCATION);