summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-16 23:19:38 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-16 23:19:38 +0000
commit1a12ef0967b86b7abaa226bf94d6eb39d09c492f (patch)
tree8dfd3bce8335bd777ffc20d56301a0cfdeeba479
parent642d530d6065922be202906cc2061df351a44b19 (diff)
downloadATCD-1a12ef0967b86b7abaa226bf94d6eb39d09c492f.tar.gz
adding notes
-rw-r--r--TAO/tao/notes/changes-in-ORB-cpp.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/tao/notes/changes-in-ORB-cpp.txt b/TAO/tao/notes/changes-in-ORB-cpp.txt
new file mode 100644
index 00000000000..3e151fd171b
--- /dev/null
+++ b/TAO/tao/notes/changes-in-ORB-cpp.txt
@@ -0,0 +1,27 @@
+Made changes in ORB.cpp to add the following functions:
+
+#if !defined(CORBA_E_MICRO)
+ /// Create a client network priority policy
+ TAO::NetworkPriorityPolicy_ptr
+ create_network_priority_policy (
+ ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+#endif
+
+#if !defined(CORBA_E_MICRO)
+ /// Create a client network priority policy
+ TAO::NetworkPriorityPolicy_ptr
+ create_client_network_priority_policy (
+ ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+#endif
+
+And also modified the following function to create the network priority
+policy:
+
+#if !defined(CORBA_E_MICRO)
+ /// Create an empty policy, usually to be filled in later by
+ /// demarshaling.
+ CORBA::Policy_ptr _create_policy (CORBA::PolicyType type
+ ACE_ENV_ARG_DECL);
+#endif