summaryrefslogtreecommitdiff
path: root/TAO/tao/Protocols_Hooks.cpp
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-22 22:19:33 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-22 22:19:33 +0000
commit10c3dff538a9faa6eb1f44a2d8c83bd6a7328109 (patch)
tree4742dc76fcf1d3099728949e4cbe4770ab3b65fb /TAO/tao/Protocols_Hooks.cpp
parent548b94c037cd9d5a8e51311d150033d738d9abb3 (diff)
downloadATCD-10c3dff538a9faa6eb1f44a2d8c83bd6a7328109.tar.gz
ChangeLogTag: Fri Dec 22 14:13:46 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'TAO/tao/Protocols_Hooks.cpp')
-rw-r--r--TAO/tao/Protocols_Hooks.cpp39
1 files changed, 30 insertions, 9 deletions
diff --git a/TAO/tao/Protocols_Hooks.cpp b/TAO/tao/Protocols_Hooks.cpp
index 47852fd70e0..24572cd9ccb 100644
--- a/TAO/tao/Protocols_Hooks.cpp
+++ b/TAO/tao/Protocols_Hooks.cpp
@@ -80,15 +80,6 @@ TAO_Protocols_Hooks:: get_selector_bands_policy_hook (
return;
}
-void
-TAO_Protocols_Hooks::select_endpoint_hook (TAO_GIOP_Invocation *,
- CORBA::Policy *,
- TAO_Profile *&,
- CORBA::Environment &)
-{
- return;
-}
-
CORBA::Policy *
TAO_Protocols_Hooks::effective_priority_banded_connection_hook (CORBA::Policy *,
CORBA::Policy *,
@@ -105,6 +96,36 @@ TAO_Protocols_Hooks::effective_client_protocol_hook (CORBA::Policy *,
return CORBA::Policy::_nil ();
}
+int
+TAO_Protocols_Hooks::get_thread_priority (TAO_ORB_Core *,
+ CORBA::Short &,
+ CORBA::Environment &)
+{
+ return 0;
+}
+
+int
+TAO_Protocols_Hooks::set_thread_priority (TAO_ORB_Core *,
+ CORBA::Short,
+ CORBA::Environment &)
+{
+ return 0;
+}
+
+void
+TAO_Protocols_Hooks::set_priority_mapping (TAO_ORB_Core *,
+ TAO_Resource_Factory *,
+ CORBA::Environment &)
+{
+ return;
+}
+
+int
+TAO_Protocols_Hooks::set_default_policies (TAO_ORB_Core *)
+{
+ return 0;
+}
+
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Dynamic_Service<TAO_Protocols_Hooks>;