diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-08-28 04:03:37 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-08-28 04:03:37 +0000 |
commit | 05ebe6adcddaa5aba6a9e08c4ef36fef3d7e49d8 (patch) | |
tree | 4a4ef98f4ffe772c378ccae4c0a580815dab0566 /TAO | |
parent | cbe3d638d5102256208876d17d89c1499f0bcd20 (diff) | |
download | ATCD-05ebe6adcddaa5aba6a9e08c4ef36fef3d7e49d8.tar.gz |
ChangeLogTag:Wed Aug 27 21:00:41 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO')
54 files changed, 4857 insertions, 6435 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 88d5ce1fc75..629397db7f7 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,125 @@ +Wed Aug 27 21:00:41 2003 Ossama Othman <ossama@dre.vanderbilt.edu> + + * tao/Adapter.h: + + Removed unnecessary "tao/Object.h" include. Forward declaring + CORBA::Object_{ptr,out} (via corbafwd.h) and "TAO::ObjectKey" is + enough. + + * tao/Adapter.cpp: + + Include "Object.h" to pull in complete CORBA::Object_out type. + + * tao/Any.h: + + Removed unnecessary "tao/Object.h" include. + + * tao/Any_Dual_Impl_T.cpp: + * tao/Any_SystemException.cpp: + + Include "tao/Environment.h" to pull in CORBA::Environment + declaration. + + * tao/Acceptor_Filter.h: + * tao/LocalObject.h: + + Removed unnecessary "tao/Object_KeyC.h" include. A + "TAO::ObjectKey" forward declaration is enough. + + * tao/CDR_Encaps_Codec.h: + + Include "IOP_CodecC.h" instead of "IOPC.h". The former is + lighter weight. + + * tao/Connector_Registry.h: + + No longer any need to include "tao/Endpoint.h". + + (get_connector): + * tao/Connector_Registry.i (get_connector): + + Removed version of this method that accepts a TAO_Endpoint. It + is redundant. Just use the version that accepts an endpoint tag + value. Allows removal of "tao/Endpoint.h" include. + + * tao/Invocation.cpp (perform_call): + + Use version of ACE_Connector_Registry::get_connector() that + accepts an endpoint tag value instead of a pointer to an + endpoint. The latter is redundant and has been removed. + + * tao/MProfile.h: + * tao/Message_PolicyValueC.h: + * tao/PolicyFactory_Registry.h: + + Include "tao/Policy_ForwardC.h" instead of "tao/PolicyC.h". The + former is much lighter weight than the latter. This helps + improve compile times. + + * tao/MProfile.i (create_policy_list): + * tao/MProfile.cpp (create_policy_list): + + Uninlined this method. Inlining it didn't buy us much. + + * tao/Muxed_TMS.h: + * tao/Typecode.h: + + Include "Hash_Map_Manager_T.h" instead of "Hash_Map_Manager.h". + We save one level header indirection in doing so since the + latter includes the former. + + * tao/NVList.h: + + Forward declare TAO_ORB_Core class. + + * tao/Object.h: + * tao/corbafwd.h: + + Moved the CORBA::Object_{var,out} typedefs to corbafwd.h. + Allows reduction of inter-header dependencies for headers that + only require forward declarations, not the complete types. + + * tao/PolicyFactory_Registry.h (create_policy, _create_policy): + * tao/PolicyFactory_Registry.cpp (create_policy, _create_policy): + + Removed exception specifications. They aren't strictly needed, + and forced a dependency on PolicyC.h due to CORBA::PolicyError + being placed in them. + + * tao/Any_Impl_T.cpp: + * tao/DynamicC.h: + * tao/TimeBaseC.h: + + Include "tao/CDR.h" for TAO_{Input,Output}CDR types. + + * tao/Transport.h: + + No need to include "tao/Exceptions.h" and + "tao/Transport_Descriptor_Interface.h". + + * tao/Transport_Mux_Strategy.h: + + No need to include "IOPC.h". Include "corbafwd.h" instead. + + * tao/Transport_Mux_Strategy.cpp: + + No need to include "Reply_Dispatcher.h" + + * tao/TypeCodeFactory_Adapter.h: + + Do not use default CORBA::Environment parameter values for + TAO-specific/internal code. Removed the default parameter + values. + + * tao/target_specification.h: + + No need to include "tao/Object_KeyC.h" and "tao/IOPC.h". + Suitable forward declarations in the IOP and TAO and namespaces + are enough. + + Include "tao/corbafwd.h" to pull in primitive types in CORBA + namespace. + Thu Aug 28 03:46:28 UTC 2003 Don Hinton <dhinton@dresystems.com> * tao/Utils/Utils.mpc: diff --git a/TAO/tao/Acceptor_Filter.h b/TAO/tao/Acceptor_Filter.h index aa5672bde87..95350a17e50 100644 --- a/TAO/tao/Acceptor_Filter.h +++ b/TAO/tao/Acceptor_Filter.h @@ -22,8 +22,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "tao/Object_KeyC.h" - #if defined(_MSC_VER) #if (_MSC_VER >= 1200) #pragma warning(push) @@ -31,6 +29,12 @@ #pragma warning(disable:4250) #endif /* _MSC_VER */ + +namespace TAO +{ + class ObjectKey; +} + class TAO_MProfile; class TAO_Acceptor; diff --git a/TAO/tao/Adapter.cpp b/TAO/tao/Adapter.cpp index 2ee8319e281..47f281bc0fe 100644 --- a/TAO/tao/Adapter.cpp +++ b/TAO/tao/Adapter.cpp @@ -1,5 +1,6 @@ // $Id$ #include "Adapter.h" +#include "Object.h" #include "ace/Dynamic_Service.h" #include "debug.h" diff --git a/TAO/tao/Adapter.h b/TAO/tao/Adapter.h index 4abd9b74749..905d81110be 100644 --- a/TAO/tao/Adapter.h +++ b/TAO/tao/Adapter.h @@ -1,4 +1,4 @@ -/* -*- C++ -*- */ +// -*- C++ -*- //============================================================================= /** @@ -12,15 +12,15 @@ #ifndef TAO_ADAPTER_H #define TAO_ADAPTER_H + #include /**/ "ace/pre.h" -#include "tao/Object.h" +#include "ace/Service_Object.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "ace/Service_Object.h" #include "tao/Exception.h" #if defined(_MSC_VER) @@ -30,6 +30,11 @@ #pragma warning(disable:4250) #endif /* _MSC_VER */ +namespace TAO +{ + class ObjectKey; +} + class TAO_ORB_Core; class TAO_Stub; class TAO_MProfile; @@ -41,17 +46,17 @@ public: virtual ~TAO_Adapter (void); /// Initialize the Adapter - virtual void open (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) = 0; + virtual void open (ACE_ENV_SINGLE_ARG_DECL) = 0; /// The ORB is shutting down, destroy any resources attached to this /// adapter. virtual void close (int wait_for_completion - ACE_ENV_ARG_DECL_NOT_USED) = 0; + ACE_ENV_ARG_DECL) = 0; /// Check if the adapter can be closed in the current context, raise /// an exception if not. virtual void check_close (int wait_for_completion - ACE_ENV_ARG_DECL_NOT_USED) = 0; + ACE_ENV_ARG_DECL) = 0; /** * Return the priority assigned to this adapter. @@ -193,4 +198,5 @@ public: #endif /* _MSC_VER */ #include /**/ "ace/post.h" + #endif /* TAO_OBJECT_ADAPTER_H */ diff --git a/TAO/tao/Any.h b/TAO/tao/Any.h index f265b33b3b7..4a5698d0460 100644 --- a/TAO/tao/Any.h +++ b/TAO/tao/Any.h @@ -22,7 +22,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "tao/Object.h" #include "tao/Typecode.h" namespace TAO diff --git a/TAO/tao/Any_Dual_Impl_T.cpp b/TAO/tao/Any_Dual_Impl_T.cpp index 08f306b247a..30545ca608d 100644 --- a/TAO/tao/Any_Dual_Impl_T.cpp +++ b/TAO/tao/Any_Dual_Impl_T.cpp @@ -5,8 +5,8 @@ #include "tao/Any_Dual_Impl_T.h" #include "tao/Marshal.h" -#include "tao/debug.h" #include "tao/CORBA_String.h" +#include "tao/Environment.h" #include "ace/CORBA_macros.h" #include "ace/Auto_Ptr.h" @@ -134,7 +134,7 @@ TAO::Any_Dual_Impl_T<T>::extract (const CORBA::Any & any, any_tc, empty_value), 0); - + auto_ptr<TAO::Any_Dual_Impl_T<T> > replacement_safety (replacement); TAO_InputCDR cdr (mb->data_block (), @@ -163,11 +163,11 @@ TAO::Any_Dual_Impl_T<T>::extract (const CORBA::Any & any, { } ACE_ENDTRY; - + return 0; } -template<typename T> +template<typename T> void TAO::Any_Dual_Impl_T<T>::free_value (void) { @@ -181,8 +181,8 @@ TAO::Any_Dual_Impl_T<T>::free_value (void) this->value_ = 0; } -template<typename T> -void +template<typename T> +void TAO::Any_Dual_Impl_T<T>::_tao_decode (TAO_InputCDR &cdr ACE_ENV_ARG_DECL) { @@ -193,4 +193,3 @@ TAO::Any_Dual_Impl_T<T>::_tao_decode (TAO_InputCDR &cdr } #endif /* TAO_ANY_DUAL_IMPL_T_C */ - diff --git a/TAO/tao/Any_Impl_T.cpp b/TAO/tao/Any_Impl_T.cpp index c8418bf7e1b..c407967395c 100644 --- a/TAO/tao/Any_Impl_T.cpp +++ b/TAO/tao/Any_Impl_T.cpp @@ -5,7 +5,7 @@ #include "tao/Any_Impl_T.h" #include "tao/Marshal.h" -#include "tao/debug.h" +#include "tao/CDR.h" #include "ace/CORBA_macros.h" #include "ace/Auto_Ptr.h" @@ -32,7 +32,7 @@ TAO::Any_Impl_T<T>::~Any_Impl_T (void) { } -template<typename T> +template<typename T> void TAO::Any_Impl_T<T>::insert (CORBA::Any & any, _tao_destructor destructor, @@ -47,7 +47,7 @@ TAO::Any_Impl_T<T>::insert (CORBA::Any & any, any.replace (new_impl); } -template<typename T> +template<typename T> CORBA::Boolean TAO::Any_Impl_T<T>::extract (const CORBA::Any & any, _tao_destructor destructor, @@ -95,7 +95,7 @@ TAO::Any_Impl_T<T>::extract (const CORBA::Any & any, any_tc, 0), 0); - + auto_ptr<TAO::Any_Impl_T<T> > replacement_safety (replacement); TAO_InputCDR cdr (mb->data_block (), @@ -124,11 +124,11 @@ TAO::Any_Impl_T<T>::extract (const CORBA::Any & any, { } ACE_ENDTRY; - + return 0; } -template<typename T> +template<typename T> void TAO::Any_Impl_T<T>::free_value (void) { @@ -142,8 +142,8 @@ TAO::Any_Impl_T<T>::free_value (void) this->value_ = 0; } -template<typename T> -void +template<typename T> +void TAO::Any_Impl_T<T>::_tao_decode (TAO_InputCDR &cdr ACE_ENV_ARG_DECL) { diff --git a/TAO/tao/Any_SystemException.cpp b/TAO/tao/Any_SystemException.cpp index b6e79ec0807..15b13866303 100644 --- a/TAO/tao/Any_SystemException.cpp +++ b/TAO/tao/Any_SystemException.cpp @@ -1,12 +1,10 @@ // $Id$ -#ifndef TAO_ANY_SYSTEMEXCEPTION_C -#define TAO_ANY_SYSTEMEXCEPTION_C - #include "Any_SystemException.h" +#include "CDR.h" #include "Exception.h" +#include "Environment.h" #include "Marshal.h" -#include "debug.h" #include "CORBA_String.h" #include "ace/Auto_Ptr.h" @@ -207,4 +205,3 @@ TAO::Any_SystemException::demarshal_value (TAO_InputCDR &cdr) return 0; } -#endif /* TAO_ANY_EXCEPTION_C */ diff --git a/TAO/tao/BiDir_GIOP/Makefile b/TAO/tao/BiDir_GIOP/Makefile index 09df60acc83..0d1ccb9d845 100644 --- a/TAO/tao/BiDir_GIOP/Makefile +++ b/TAO/tao/BiDir_GIOP/Makefile @@ -277,7 +277,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -292,7 +291,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ @@ -318,8 +316,6 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ BiDirPolicy_Validator.h \ $(TAO_ROOT)/tao/Policy_Validator.h \ @@ -610,7 +606,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -625,7 +620,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ @@ -695,9 +689,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -715,9 +709,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -735,8 +726,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -812,7 +805,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -836,8 +828,6 @@ endif $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ BiDir_PolicyFactory.h BiDirGIOP.h \ $(TAO_ROOT)/tao/BiDir_Adapter.h \ @@ -948,9 +938,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -968,9 +958,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -988,8 +975,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1065,7 +1054,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -1089,8 +1077,6 @@ endif $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i BiDirGIOP.h \ $(TAO_ROOT)/tao/BiDir_Adapter.h \ $(ACE_ROOT)/ace/Service_Object.h \ @@ -1343,7 +1329,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1358,14 +1343,11 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/PolicyC.i BiDirPolicyC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ BiDir_Policy_i.inl $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ @@ -1383,7 +1365,8 @@ endif $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ - $(TAO_ROOT)/tao/Stub.i + $(TAO_ROOT)/tao/Stub.i \ + $(TAO_ROOT)/tao/debug.h .obj/BiDirPolicy_Validator.o .obj/BiDirPolicy_Validator.so .shobj/BiDirPolicy_Validator.o .shobj/BiDirPolicy_Validator.so: BiDirPolicy_Validator.cpp \ BiDirPolicy_Validator.h $(ACE_ROOT)/ace/pre.h \ @@ -1594,7 +1577,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1609,14 +1591,11 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/PolicyC.i BiDirPolicyC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ BiDir_Policy_i.inl \ $(TAO_ROOT)/tao/Policy_Set.h \ diff --git a/TAO/tao/CDR_Encaps_Codec.h b/TAO/tao/CDR_Encaps_Codec.h index dde42c23bc0..7b62d08a121 100644 --- a/TAO/tao/CDR_Encaps_Codec.h +++ b/TAO/tao/CDR_Encaps_Codec.h @@ -21,7 +21,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "IOPC.h" +#include "IOP_CodecC.h" #include "LocalObject.h" // This is to remove "inherits via dominance" warnings from MSVC. diff --git a/TAO/tao/CodecFactory.h b/TAO/tao/CodecFactory.h index 1faad634b69..6a8f372da70 100644 --- a/TAO/tao/CodecFactory.h +++ b/TAO/tao/CodecFactory.h @@ -21,7 +21,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "IOPC.h" +#include "IOP_CodecC.h" #include "LocalObject.h" // This is to remove "inherits via dominance" warnings from MSVC. diff --git a/TAO/tao/Connector_Registry.h b/TAO/tao/Connector_Registry.h index edd6abffbeb..e4b2ced0964 100644 --- a/TAO/tao/Connector_Registry.h +++ b/TAO/tao/Connector_Registry.h @@ -1,13 +1,12 @@ -// This may look like C, but it's really -*- C++ -*- +// -*- C++ -*- //============================================================================= /** - * @file Connector_Registry.h + * @file Connector_Registry.h * * $Id$ * - * Interface for the TAO Connector Registry - * + * Interface for the TAO Connector Registry * * @author Fred Kuhns <fredk@cs.wustl.edu> */ @@ -16,6 +15,7 @@ #ifndef TAO_CONNECTOR_REGISTRY_H #define TAO_CONNECTOR_REGISTRY_H + #include /**/ "ace/pre.h" #include "corbafwd.h" @@ -24,7 +24,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "Endpoint.h" #include "ace/CORBA_macros.h" // Forward declarations. @@ -67,7 +66,6 @@ public: /// Return the connector bridges TAO_Connector *get_connector (CORBA::ULong tag); - TAO_Connector *get_connector (TAO_Endpoint *ep); /// Initialize all registered connectors. int open (TAO_ORB_Core *orb_core); diff --git a/TAO/tao/Connector_Registry.i b/TAO/tao/Connector_Registry.i index e7c870db957..c2976325560 100644 --- a/TAO/tao/Connector_Registry.i +++ b/TAO/tao/Connector_Registry.i @@ -1,10 +1,6 @@ // -*- C++ -*- +// // $Id$ -ACE_INLINE TAO_Connector * -TAO_Connector_Registry::get_connector (TAO_Endpoint *ep) -{ - return this->get_connector (ep->tag ()); -} ACE_INLINE TAO_ConnectorSetIterator TAO_Connector_Registry::begin (void) diff --git a/TAO/tao/Domain/Makefile b/TAO/tao/Domain/Makefile index 979d386fd95..2b259869e75 100644 --- a/TAO/tao/Domain/Makefile +++ b/TAO/tao/Domain/Makefile @@ -163,7 +163,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -239,7 +238,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -258,6 +256,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(TAO_ROOT)/tao/PortableServer/Servant_Base.h \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ @@ -311,8 +310,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -413,6 +410,7 @@ endif $(ACE_ROOT)/ace/Managed_Object.cpp \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.h \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.inl \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/TAO_Server_Request.h \ $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/IOPC.h \ @@ -421,6 +419,8 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ diff --git a/TAO/tao/DynamicAny/Makefile b/TAO/tao/DynamicAny/Makefile index 0b3fe93a982..232a91b761d 100644 --- a/TAO/tao/DynamicAny/Makefile +++ b/TAO/tao/DynamicAny/Makefile @@ -237,7 +237,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -259,23 +258,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -291,34 +315,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -341,11 +338,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -524,7 +523,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -546,23 +544,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -578,34 +601,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -628,11 +624,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -820,7 +818,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -842,23 +839,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -874,34 +896,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -924,11 +919,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1116,7 +1113,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1138,23 +1134,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -1170,34 +1191,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1220,11 +1214,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1403,7 +1399,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1425,23 +1420,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -1457,34 +1477,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1507,11 +1500,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1699,7 +1694,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1721,23 +1715,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -1753,34 +1772,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1803,11 +1795,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1995,7 +1989,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2017,23 +2010,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -2049,34 +2067,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2099,11 +2090,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -2291,7 +2284,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2313,23 +2305,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -2345,34 +2362,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2395,11 +2385,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -2587,7 +2579,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2609,23 +2600,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -2641,34 +2657,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2691,11 +2680,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -2873,7 +2864,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h DynamicAnyC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2895,23 +2885,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -2927,34 +2942,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2977,11 +2965,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -3019,10 +3009,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ diff --git a/TAO/tao/DynamicC.h b/TAO/tao/DynamicC.h index 17ccbbba94c..3b85786512e 100644 --- a/TAO/tao/DynamicC.h +++ b/TAO/tao/DynamicC.h @@ -45,6 +45,7 @@ #include "tao/VarOut_T.h" #include "tao/Seq_Var_T.h" #include "tao/Seq_Out_T.h" +#include "tao/CDR.h" #if defined (TAO_EXPORT_MACRO) #undef TAO_EXPORT_MACRO @@ -74,57 +75,57 @@ TAO_NAMESPACE Dynamic { - + // TAO_IDL - Generated from // be/be_type.cpp:249 - + struct Parameter; - + typedef TAO_Var_Var_T< Parameter > Parameter_var; - + typedef TAO_Out_T< Parameter, Parameter_var > Parameter_out; - + // TAO_IDL - Generated from // be/be_visitor_structure/structure_ch.cpp:52 - + struct TAO_Export Parameter { typedef Parameter_var _var_type; - + static void _tao_any_destructor (void *); CORBA::Any argument; CORBA::ParameterMode mode; }; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_Parameter; - + // TAO_IDL - Generated from // be/be_visitor_sequence/sequence_ch.cpp:89 #if !defined (_DYNAMIC_PARAMETERLIST_CH_) #define _DYNAMIC_PARAMETERLIST_CH_ - + class ParameterList; - + typedef TAO_VarSeq_Var_T< ParameterList, Parameter > ParameterList_var; - + typedef TAO_Seq_Out_T< ParameterList, @@ -132,7 +133,7 @@ TAO_NAMESPACE Dynamic Parameter > ParameterList_out; - + class TAO_Export ParameterList : public TAO_Unbounded_Sequence< @@ -145,57 +146,57 @@ TAO_NAMESPACE Dynamic ParameterList ( CORBA::ULong max, CORBA::ULong length, - Parameter* buffer, + Parameter* buffer, CORBA::Boolean release = 0 ); ParameterList (const ParameterList &); ~ParameterList (void); - + static void _tao_any_destructor (void *); - + typedef ParameterList_var _var_type; }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ParameterList; - + // TAO_IDL - Generated from // be/be_visitor_typedef/typedef_ch.cpp:426 - + typedef CORBA::StringSeq ContextList; typedef CORBA::StringSeq_var ContextList_var; typedef CORBA::StringSeq_out ContextList_out; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ContextList; - + // TAO_IDL - Generated from // be/be_visitor_typedef/typedef_ch.cpp:333 - + typedef CORBA::TypeCode TypeCode; typedef CORBA::TypeCode_ptr TypeCode_ptr; typedef CORBA::TypeCode_var TypeCode_var; typedef CORBA::TypeCode_out TypeCode_out; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_TypeCode; - + // TAO_IDL - Generated from // be/be_visitor_sequence/sequence_ch.cpp:89 #if !defined (_DYNAMIC_EXCEPTIONLIST_CH_) #define _DYNAMIC_EXCEPTIONLIST_CH_ - + class ExceptionList; - + typedef TAO_MngSeq_Var_T< ExceptionList, @@ -205,7 +206,7 @@ TAO_NAMESPACE Dynamic > > ExceptionList_var; - + typedef TAO_MngSeq_Out_T< ExceptionList, @@ -216,7 +217,7 @@ TAO_NAMESPACE Dynamic > > ExceptionList_out; - + class TAO_Export ExceptionList : public TAO_Unbounded_Pseudo_Sequence< @@ -230,34 +231,34 @@ TAO_NAMESPACE Dynamic ExceptionList ( CORBA::ULong max, CORBA::ULong length, - CORBA::TypeCode_ptr* buffer, + CORBA::TypeCode_ptr* buffer, CORBA::Boolean release = 0 ); ExceptionList (const ExceptionList &); ~ExceptionList (void); - + static void _tao_any_destructor (void *); - + typedef ExceptionList_var _var_type; }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ExceptionList; - + // TAO_IDL - Generated from // be/be_visitor_typedef/typedef_ch.cpp:426 - + typedef CORBA::StringSeq RequestContext; typedef CORBA::StringSeq_var RequestContext_var; typedef CORBA::StringSeq_out RequestContext_out; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_RequestContext; // TAO_IDL - Generated from @@ -357,4 +358,3 @@ TAO_Export CORBA::Boolean operator>> ( #include /**/ "ace/post.h" #endif /* ifndef */ - diff --git a/TAO/tao/DynamicInterface/Makefile b/TAO/tao/DynamicInterface/Makefile index 416b751dbaf..57a3e9d7cc0 100644 --- a/TAO/tao/DynamicInterface/Makefile +++ b/TAO/tao/DynamicInterface/Makefile @@ -180,7 +180,6 @@ endif $(ACE_ROOT)/ace/CORBA_macros.h \ $(ACE_ROOT)/ace/Exception_Macros.h Context.inl \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -214,38 +213,6 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/NVList.i @@ -348,10 +315,6 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -361,10 +324,9 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -440,7 +402,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -449,19 +410,21 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -548,6 +511,8 @@ endif $(TAO_ROOT)/tao/Stub.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Transport_Mux_Strategy.h .obj/DII_Reply_Dispatcher.o .obj/DII_Reply_Dispatcher.so .shobj/DII_Reply_Dispatcher.o .shobj/DII_Reply_Dispatcher.so: DII_Reply_Dispatcher.cpp DII_Reply_Dispatcher.h \ @@ -590,16 +555,10 @@ endif $(ACE_ROOT)/ace/Default_Constants.h \ $(ACE_ROOT)/ace/CDR_Base.inl \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -641,6 +600,7 @@ endif $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -701,6 +661,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -711,6 +673,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -773,6 +736,8 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ Context.inl ExceptionList.h ExceptionList.inl \ $(TAO_ROOT)/tao/ORB.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/ServicesC.h \ $(TAO_ROOT)/tao/ServicesC.i \ $(TAO_ROOT)/tao/CORBA_String.h \ @@ -795,14 +760,12 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ @@ -810,6 +773,7 @@ endif $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i Request.inl \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/ORB_Core.h \ $(TAO_ROOT)/tao/Resource_Factory.h \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -859,8 +823,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -969,9 +931,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -989,9 +951,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -1009,8 +968,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1086,7 +1047,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -1114,8 +1074,6 @@ endif $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ClientRequestInfo_i.inl \ @@ -1397,7 +1355,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1412,7 +1369,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ @@ -1471,10 +1427,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -1656,7 +1612,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1732,7 +1687,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1750,6 +1704,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ $(ACE_ROOT)/ace/Atomic_Op.h \ @@ -2106,7 +2061,6 @@ endif $(ACE_ROOT)/ace/Exception_Macros.h \ ExceptionList.inl \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2351,7 +2305,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2366,7 +2319,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ @@ -2398,15 +2350,13 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -2715,20 +2665,15 @@ endif $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.h \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2745,12 +2690,15 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/GIOPC.h \ @@ -2855,43 +2803,7 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2958,6 +2870,9 @@ endif $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i diff --git a/TAO/tao/IFR_Client/Makefile b/TAO/tao/IFR_Client/Makefile index 9425d5a4c12..12af4d83d17 100644 --- a/TAO/tao/IFR_Client/Makefile +++ b/TAO/tao/IFR_Client/Makefile @@ -104,7 +104,6 @@ endif $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -204,50 +203,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -261,12 +230,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -289,11 +286,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -428,10 +427,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -489,7 +488,6 @@ endif $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -589,50 +587,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -646,12 +614,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -674,11 +670,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -813,10 +811,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -874,7 +872,6 @@ endif $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -974,50 +971,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -1031,12 +998,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1059,11 +1054,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1198,10 +1195,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -1259,7 +1256,6 @@ endif $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1359,50 +1355,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -1416,12 +1382,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1444,11 +1438,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1584,10 +1580,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -1767,7 +1763,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h IFR_ExtendedC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1791,23 +1786,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -1823,34 +1843,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1873,11 +1866,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1980,10 +1975,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ diff --git a/TAO/tao/IOP_CodecC.h b/TAO/tao/IOP_CodecC.h index d5c289fdb6b..f62237ff4ad 100644 --- a/TAO/tao/IOP_CodecC.h +++ b/TAO/tao/IOP_CodecC.h @@ -37,9 +37,10 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "tao/TAO_Export.h" -#include "tao/VarOut_T.h" +#include "tao/Objref_VarOut_T.h" #include "tao/Any_Impl_T.h" #include "tao/Any_Dual_Impl_T.h" +#include "tao/Object.h" #if defined (TAO_EXPORT_MACRO) #undef TAO_EXPORT_MACRO @@ -69,31 +70,31 @@ TAO_NAMESPACE IOP { - + // TAO_IDL - Generated from // be/be_interface.cpp:570 #if !defined (_IOP_CODEC__ODDS_N_ENDS_CH_) #define _IOP_CODEC__ODDS_N_ENDS_CH_ - + class Codec; typedef Codec *Codec_ptr; struct tao_Codec_life; - + typedef TAO_Objref_Var_T< Codec, tao_Codec_life > Codec_var; - + typedef TAO_Objref_Out_T< Codec, tao_Codec_life > Codec_out; - + struct TAO_Export tao_Codec_life { static Codec_ptr tao_duplicate (Codec_ptr); @@ -104,7 +105,7 @@ TAO_NAMESPACE IOP TAO_OutputCDR & ); }; - + struct TAO_Export tao_Codec_cast { static Codec_ptr tao_narrow ( @@ -115,13 +116,13 @@ TAO_NAMESPACE IOP }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_interface/interface_ch.cpp:50 #if !defined (_IOP_CODEC_CH_) #define _IOP_CODEC_CH_ - + class TAO_Export Codec : public virtual CORBA::Object { @@ -129,45 +130,45 @@ TAO_NAMESPACE IOP typedef Codec_ptr _ptr_type; typedef Codec_var _var_type; static int _tao_class_id; - + // The static operations. static Codec_ptr _duplicate (Codec_ptr obj); - + static Codec_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static Codec_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static Codec_ptr _nil (void) { return (Codec_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:51 #if !defined (_IOP_CODEC_INVALIDTYPEFORENCODING_CH_) #define _IOP_CODEC_INVALIDTYPEFORENCODING_CH_ - + class TAO_Export InvalidTypeForEncoding : public CORBA::UserException { public: - + InvalidTypeForEncoding (void); InvalidTypeForEncoding (const InvalidTypeForEncoding &); ~InvalidTypeForEncoding (void); InvalidTypeForEncoding &operator= (const InvalidTypeForEncoding &); - + static void _tao_any_destructor (void *); - + static InvalidTypeForEncoding *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -179,43 +180,43 @@ TAO_NAMESPACE IOP TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + static ::CORBA::TypeCode_ptr _tc_InvalidTypeForEncoding; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:51 #if !defined (_IOP_CODEC_FORMATMISMATCH_CH_) #define _IOP_CODEC_FORMATMISMATCH_CH_ - + class TAO_Export FormatMismatch : public CORBA::UserException { public: - + FormatMismatch (void); FormatMismatch (const FormatMismatch &); ~FormatMismatch (void); FormatMismatch &operator= (const FormatMismatch &); - + static void _tao_any_destructor (void *); - + static FormatMismatch *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -227,43 +228,43 @@ TAO_NAMESPACE IOP TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + static ::CORBA::TypeCode_ptr _tc_FormatMismatch; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:51 #if !defined (_IOP_CODEC_TYPEMISMATCH_CH_) #define _IOP_CODEC_TYPEMISMATCH_CH_ - + class TAO_Export TypeMismatch : public CORBA::UserException { public: - + TypeMismatch (void); TypeMismatch (const TypeMismatch &); ~TypeMismatch (void); TypeMismatch &operator= (const TypeMismatch &); - + static void _tao_any_destructor (void *); - + static TypeMismatch *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -275,28 +276,28 @@ TAO_NAMESPACE IOP TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + static ::CORBA::TypeCode_ptr _tc_TypeMismatch; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::OctetSeq * encode ( const CORBA::Any & data ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -305,10 +306,10 @@ TAO_NAMESPACE IOP CORBA::SystemException , IOP::Codec::InvalidTypeForEncoding )) = 0; - + // TAO_IDL - Generated from // be/be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Any * decode ( const CORBA::OctetSeq & data ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -317,10 +318,10 @@ TAO_NAMESPACE IOP CORBA::SystemException , IOP::Codec::FormatMismatch )) = 0; - + // TAO_IDL - Generated from // be/be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::OctetSeq * encode_value ( const CORBA::Any & data ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -329,10 +330,10 @@ TAO_NAMESPACE IOP CORBA::SystemException , IOP::Codec::InvalidTypeForEncoding )) = 0; - + // TAO_IDL - Generated from // be/be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Any * decode_value ( const CORBA::OctetSeq & data, CORBA::TypeCode_ptr tc @@ -343,104 +344,104 @@ TAO_NAMESPACE IOP , IOP::Codec::FormatMismatch , IOP::Codec::TypeMismatch )) = 0; - + // TAO_IDL - Generated from // be/be_visitor_interface/interface_ch.cpp:207 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: Codec (void); virtual ~Codec (void); - + private: Codec (const Codec &); void operator= (const Codec &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_Codec; - + // TAO_IDL - Generated from // be/be_visitor_typedef/typedef_ch.cpp:333 - + typedef CORBA::Short EncodingFormat; typedef CORBA::Short_out EncodingFormat_out; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_EncodingFormat; - + // TAO_IDL - Generated from // be/be_visitor_constant/constant_ch.cpp:52 - + const IOP::EncodingFormat ENCODING_CDR_ENCAPS = 0; - + // TAO_IDL - Generated from // be/be_type.cpp:249 - + struct Encoding; - + typedef TAO_Fixed_Var_T< Encoding > Encoding_var; - + typedef Encoding & Encoding_out; - + // TAO_IDL - Generated from // be/be_visitor_structure/structure_ch.cpp:52 - + struct TAO_Export Encoding { typedef Encoding_var _var_type; - + static void _tao_any_destructor (void *); IOP::EncodingFormat format; CORBA::Octet major_version; CORBA::Octet minor_version; }; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_Encoding; - + // TAO_IDL - Generated from // be/be_interface.cpp:570 #if !defined (_IOP_CODECFACTORY__ODDS_N_ENDS_CH_) #define _IOP_CODECFACTORY__ODDS_N_ENDS_CH_ - + class CodecFactory; typedef CodecFactory *CodecFactory_ptr; struct tao_CodecFactory_life; - + typedef TAO_Objref_Var_T< CodecFactory, tao_CodecFactory_life > CodecFactory_var; - + typedef TAO_Objref_Out_T< CodecFactory, tao_CodecFactory_life > CodecFactory_out; - + struct TAO_Export tao_CodecFactory_life { static CodecFactory_ptr tao_duplicate (CodecFactory_ptr); @@ -451,7 +452,7 @@ TAO_NAMESPACE IOP TAO_OutputCDR & ); }; - + struct TAO_Export tao_CodecFactory_cast { static CodecFactory_ptr tao_narrow ( @@ -462,13 +463,13 @@ TAO_NAMESPACE IOP }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_interface/interface_ch.cpp:50 #if !defined (_IOP_CODECFACTORY_CH_) #define _IOP_CODECFACTORY_CH_ - + class TAO_Export CodecFactory : public virtual CORBA::Object { @@ -476,45 +477,45 @@ TAO_NAMESPACE IOP typedef CodecFactory_ptr _ptr_type; typedef CodecFactory_var _var_type; static int _tao_class_id; - + // The static operations. static CodecFactory_ptr _duplicate (CodecFactory_ptr obj); - + static CodecFactory_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static CodecFactory_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static CodecFactory_ptr _nil (void) { return (CodecFactory_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:51 #if !defined (_IOP_CODECFACTORY_UNKNOWNENCODING_CH_) #define _IOP_CODECFACTORY_UNKNOWNENCODING_CH_ - + class TAO_Export UnknownEncoding : public CORBA::UserException { public: - + UnknownEncoding (void); UnknownEncoding (const UnknownEncoding &); ~UnknownEncoding (void); UnknownEncoding &operator= (const UnknownEncoding &); - + static void _tao_any_destructor (void *); - + static UnknownEncoding *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -526,28 +527,28 @@ TAO_NAMESPACE IOP TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // be/be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + static ::CORBA::TypeCode_ptr _tc_UnknownEncoding; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_operation/operation_ch.cpp:46 - + virtual ::IOP::Codec_ptr create_codec ( const IOP::Encoding & enc ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -556,29 +557,29 @@ TAO_NAMESPACE IOP CORBA::SystemException , IOP::CodecFactory::UnknownEncoding )) = 0; - + // TAO_IDL - Generated from // be/be_visitor_interface/interface_ch.cpp:207 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: CodecFactory (void); virtual ~CodecFactory (void); - + private: CodecFactory (const CodecFactory &); void operator= (const CodecFactory &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // be/be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_CodecFactory; // TAO_IDL - Generated from @@ -674,4 +675,3 @@ TAO_Export CORBA::Boolean operator>> (TAO_InputCDR &, IOP::Encoding &); #include /**/ "ace/post.h" #endif /* ifndef */ - diff --git a/TAO/tao/IORInterceptor/Makefile b/TAO/tao/IORInterceptor/Makefile index 286e89a1bcf..e2cf55c03dd 100644 --- a/TAO/tao/IORInterceptor/Makefile +++ b/TAO/tao/IORInterceptor/Makefile @@ -129,9 +129,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -149,9 +149,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -169,8 +166,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -246,7 +245,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -403,9 +401,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -423,9 +421,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -443,8 +438,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -520,7 +517,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -687,8 +683,6 @@ endif $(ACE_ROOT)/ace/RB_Tree.cpp \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -781,9 +775,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -801,9 +795,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -821,8 +812,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -898,7 +891,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -1102,9 +1094,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -1122,9 +1114,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -1142,8 +1131,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1219,7 +1210,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -1391,8 +1381,6 @@ endif $(ACE_ROOT)/ace/RB_Tree.cpp \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ diff --git a/TAO/tao/IORManipulation/Makefile b/TAO/tao/IORManipulation/Makefile index 1762bb6f813..9776c9208d6 100644 --- a/TAO/tao/IORManipulation/Makefile +++ b/TAO/tao/IORManipulation/Makefile @@ -105,7 +105,6 @@ endif $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -205,50 +204,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -262,12 +231,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -290,11 +287,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -333,10 +332,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -533,7 +532,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h IORC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -555,23 +553,48 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -587,34 +610,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -637,11 +633,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -753,8 +751,6 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/OS_Dirent.h \ @@ -866,7 +862,6 @@ endif $(ACE_ROOT)/ace/Reactor_Impl.h IORC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -883,10 +878,10 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -924,11 +919,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ diff --git a/TAO/tao/IORTable/Makefile b/TAO/tao/IORTable/Makefile index 6a0ca55e5e1..5bc3ee9451d 100644 --- a/TAO/tao/IORTable/Makefile +++ b/TAO/tao/IORTable/Makefile @@ -104,7 +104,6 @@ endif $(TAO_ROOT)/tao/corbafwd.i IORTableC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -204,50 +203,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -261,12 +230,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -289,11 +286,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -390,7 +389,6 @@ endif $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -490,50 +488,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -547,12 +515,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -575,11 +571,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -618,10 +616,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -661,111 +659,52 @@ endif $(ACE_ROOT)/ace/ace_wchar.h \ $(ACE_ROOT)/ace/ace_wchar.inl \ $(TAO_ROOT)/tao/Adapter.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/corbafwd.h \ - $(ACE_ROOT)/ace/CDR_Base.h \ - $(ACE_ROOT)/ace/Basic_Types.h \ - $(ACE_ROOT)/ace/os_include/os_limits.h \ - $(ACE_ROOT)/ace/os_include/os_unistd.h \ + $(ACE_ROOT)/ace/Service_Object.h \ + $(ACE_ROOT)/ace/Shared_Object.h \ + $(ACE_ROOT)/ace/ACE_export.h \ $(ACE_ROOT)/ace/os_include/sys/os_types.h \ $(ACE_ROOT)/ace/os_include/os_stddef.h \ + $(ACE_ROOT)/ace/Shared_Object.i \ + $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ + $(ACE_ROOT)/ace/Event_Handler.h \ + $(ACE_ROOT)/ace/os_include/os_signal.h \ + $(ACE_ROOT)/ace/os_include/os_time.h \ + $(ACE_ROOT)/ace/os_include/os_ucontext.h \ + $(ACE_ROOT)/ace/Atomic_Op.h \ + $(ACE_ROOT)/ace/Thread_Mutex.h \ + $(ACE_ROOT)/ace/OS.h \ + $(ACE_ROOT)/ace/OS_Dirent.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/os_include/os_errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ + $(ACE_ROOT)/ace/os_include/os_dirent.h \ + $(ACE_ROOT)/ace/os_include/os_limits.h \ + $(ACE_ROOT)/ace/os_include/os_unistd.h \ $(ACE_ROOT)/ace/os_include/os_inttypes.h \ $(ACE_ROOT)/ace/os_include/os_stdint.h \ $(ACE_ROOT)/ace/os_include/os_stdio.h \ $(ACE_ROOT)/ace/os_include/os_stdarg.h \ + $(ACE_ROOT)/ace/OS_Dirent.inl \ + $(ACE_ROOT)/ace/OS_String.h \ + $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/os_include/os_float.h \ $(ACE_ROOT)/ace/os_include/os_stdlib.h \ $(ACE_ROOT)/ace/os_include/sys/os_wait.h \ - $(ACE_ROOT)/ace/os_include/os_signal.h \ - $(ACE_ROOT)/ace/os_include/os_time.h \ - $(ACE_ROOT)/ace/os_include/os_ucontext.h \ $(ACE_ROOT)/ace/os_include/sys/os_resource.h \ $(ACE_ROOT)/ace/os_include/sys/os_time.h \ $(ACE_ROOT)/ace/os_include/sys/os_select.h \ - $(ACE_ROOT)/ace/ACE_export.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Default_Constants.h \ - $(ACE_ROOT)/ace/CDR_Base.inl \ - $(TAO_ROOT)/tao/orbconf.h \ - $(ACE_ROOT)/ace/Global_Macros.h \ - $(ACE_ROOT)/ace/OS_Export.h \ - $(ACE_ROOT)/ace/Synch_Traits.h \ - $(ACE_ROOT)/ace/Lock.h \ - $(ACE_ROOT)/ace/Lock.inl \ - $(TAO_ROOT)/tao/TAO_Export.h \ - $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - $(TAO_ROOT)/tao/CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/OS_String.h \ $(ACE_ROOT)/ace/OS_String.inl \ $(ACE_ROOT)/ace/os_include/os_string.h \ $(ACE_ROOT)/ace/os_include/os_strings.h \ $(ACE_ROOT)/ace/os_include/os_ctype.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Time_Value.h \ - $(ACE_ROOT)/ace/Time_Value.inl \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ - $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ - $(ACE_ROOT)/ace/Service_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.i \ - $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ - $(ACE_ROOT)/ace/Event_Handler.h \ - $(ACE_ROOT)/ace/Atomic_Op.h \ - $(ACE_ROOT)/ace/Thread_Mutex.h \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/OS_Dirent.h \ - $(ACE_ROOT)/ace/os_include/os_dirent.h \ - $(ACE_ROOT)/ace/OS_Dirent.inl \ + $(ACE_ROOT)/ace/OS_Memory.h \ + $(ACE_ROOT)/ace/OS_Memory.inl \ $(ACE_ROOT)/ace/OS_TLI.h \ $(ACE_ROOT)/ace/OS_TLI.inl \ $(ACE_ROOT)/ace/os_include/os_dlfcn.h \ + $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/os_include/os_netdb.h \ $(ACE_ROOT)/ace/os_include/netinet/os_in.h \ $(ACE_ROOT)/ace/os_include/sys/os_socket.h \ @@ -773,6 +712,10 @@ endif $(ACE_ROOT)/ace/os_include/net/os_if.h \ $(ACE_ROOT)/ace/os_include/sys/os_sem.h \ $(ACE_ROOT)/ace/os_include/sys/os_ipc.h \ + $(ACE_ROOT)/ace/Time_Value.h \ + $(ACE_ROOT)/ace/Time_Value.inl \ + $(ACE_ROOT)/ace/Default_Constants.h \ + $(ACE_ROOT)/ace/Global_Macros.h \ $(ACE_ROOT)/ace/Min_Max.h \ $(ACE_ROOT)/ace/os_include/os_pthread.h \ $(ACE_ROOT)/ace/os_include/os_assert.h \ @@ -796,6 +739,8 @@ endif $(ACE_ROOT)/ace/Atomic_Op_T.h \ $(ACE_ROOT)/ace/Atomic_Op_T.i \ $(ACE_ROOT)/ace/Guard_T.h \ + $(ACE_ROOT)/ace/Lock.h \ + $(ACE_ROOT)/ace/Lock.inl \ $(ACE_ROOT)/ace/Guard_T.inl \ $(ACE_ROOT)/ace/Guard_T.cpp \ $(ACE_ROOT)/ace/Atomic_Op_T.cpp \ @@ -804,10 +749,20 @@ endif $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ $(ACE_ROOT)/ace/Atomic_Op.i \ + $(ACE_ROOT)/ace/Synch_Traits.h \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/DLL.h \ $(ACE_ROOT)/ace/Service_Object.i \ $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/corbafwd.h \ + $(ACE_ROOT)/ace/CDR_Base.h \ + $(ACE_ROOT)/ace/CDR_Base.inl \ + $(TAO_ROOT)/tao/orbconf.h \ + $(TAO_ROOT)/tao/TAO_Export.h \ + $(TAO_ROOT)/tao/corbafwd.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Adapter.i \ $(ACE_ROOT)/ace/Service_Config.h \ @@ -816,6 +771,7 @@ endif $(ACE_ROOT)/ace/Node.cpp \ $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ $(ACE_ROOT)/ace/Unbounded_Set.inl \ $(ACE_ROOT)/ace/Unbounded_Set.cpp \ @@ -861,7 +817,6 @@ endif IORTable.h IORTableC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -870,18 +825,30 @@ endif $(ACE_ROOT)/ace/Functor_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ + $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/Message_Block.h \ + $(ACE_ROOT)/ace/Message_Block.i \ + $(ACE_ROOT)/ace/Message_Block_T.h \ + $(ACE_ROOT)/ace/Message_Block_T.i \ + $(ACE_ROOT)/ace/Message_Block_T.cpp \ + $(ACE_ROOT)/ace/CDR_Stream.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -895,12 +862,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -923,11 +918,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1050,7 +1047,6 @@ endif $(TAO_ROOT)/tao/corbafwd.i IORTableC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1150,50 +1146,20 @@ endif $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -1207,12 +1173,40 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1235,11 +1229,13 @@ endif $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ diff --git a/TAO/tao/Invocation.cpp b/TAO/tao/Invocation.cpp index 9561555ce18..f37d2bb1c65 100644 --- a/TAO/tao/Invocation.cpp +++ b/TAO/tao/Invocation.cpp @@ -278,10 +278,11 @@ TAO_GIOP_Invocation::perform_call (TAO_Transport_Descriptor_Interface &desc // Obtain a connection. int result = - conn_reg->get_connector (desc.endpoint ())->connect (this, - &desc, - max_wait_time - ACE_ENV_ARG_PARAMETER); + conn_reg->get_connector (desc.endpoint ()->tag ())->connect ( + this, + &desc, + max_wait_time + ACE_ENV_ARG_PARAMETER); ACE_CHECK_RETURN (-1); // A timeout error occurred diff --git a/TAO/tao/LocalObject.h b/TAO/tao/LocalObject.h index be0ab8713f1..472382d551f 100644 --- a/TAO/tao/LocalObject.h +++ b/TAO/tao/LocalObject.h @@ -28,7 +28,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "Object_KeyC.h" + #include "ace/Thread_Mutex.h" namespace CORBA diff --git a/TAO/tao/MProfile.cpp b/TAO/tao/MProfile.cpp index 3503cbfb49a..5f7f5c73d97 100644 --- a/TAO/tao/MProfile.cpp +++ b/TAO/tao/MProfile.cpp @@ -5,15 +5,19 @@ #include "tao/MProfile.h" #include "tao/Environment.h" #include "tao/Profile.h" +#include "tao/PolicyC.h" + ACE_RCSID (tao, MProfile, "$Id$") + #if !defined (__ACE_INLINE__) # include "tao/MProfile.i" #endif /* __ACE_INLINE__ */ + TAO_MProfile::~TAO_MProfile (void) { if (this->policy_list_ != 0) @@ -304,6 +308,16 @@ TAO_MProfile::hash (CORBA::ULong max } void +TAO_MProfile::create_policy_list (ACE_ENV_SINGLE_ARG_DECL) +{ + ACE_NEW_THROW_EX (this->policy_list_, + CORBA::PolicyList, + CORBA::NO_MEMORY (TAO_DEFAULT_MINOR_CODE, + CORBA::COMPLETED_NO) + ); +} + +void TAO_MProfile::init_policy_list (ACE_ENV_SINGLE_ARG_DECL) { // The first time this method is called diff --git a/TAO/tao/MProfile.h b/TAO/tao/MProfile.h index 38aa5e8b77a..861c92e1dd9 100644 --- a/TAO/tao/MProfile.h +++ b/TAO/tao/MProfile.h @@ -1,4 +1,4 @@ -// This may look like C, but it's really -*- C++ -*- +// -*- C++ -*- //============================================================================= /** @@ -8,7 +8,6 @@ * * Keep track of profile lists * - * * @author Fred Kuhns <fredk@cs.wustl.edu> */ //============================================================================= @@ -26,7 +25,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "tao/PolicyC.h" +#include "tao/Policy_ForwardC.h" class TAO_Profile; @@ -238,4 +237,4 @@ private: #include /**/ "ace/post.h" -#endif /*TAO_MPROFILE_H */ +#endif /* TAO_MPROFILE_H */ diff --git a/TAO/tao/MProfile.i b/TAO/tao/MProfile.i index 3f7063d4c88..48805e3c14d 100644 --- a/TAO/tao/MProfile.i +++ b/TAO/tao/MProfile.i @@ -192,17 +192,6 @@ TAO_MProfile::pfiles (void) const } ACE_INLINE void -TAO_MProfile::create_policy_list (ACE_ENV_SINGLE_ARG_DECL) -{ - ACE_NEW_THROW_EX (this->policy_list_, - CORBA::PolicyList, - CORBA::NO_MEMORY (TAO_DEFAULT_MINOR_CODE, - CORBA::COMPLETED_NO) - ); -} - - -ACE_INLINE void TAO_MProfile::policy_list (CORBA::PolicyList *policy_list) { this->policy_list_ = policy_list; diff --git a/TAO/tao/Makefile.tao b/TAO/tao/Makefile.tao index b920142cfb8..e3f1536a6b4 100644 --- a/TAO/tao/Makefile.tao +++ b/TAO/tao/Makefile.tao @@ -648,16 +648,11 @@ realclean: corbafwd.i \ $(ACE_ROOT)/ace/CORBA_macros.h \ $(ACE_ROOT)/ace/Exception_Macros.h \ - Transport_Connector.inl Transport.h Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport_Connector.inl Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -699,6 +694,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -768,6 +764,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -804,7 +801,10 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -816,28 +816,24 @@ realclean: Pseudo_VarOut_T.cpp \ Environment.i \ Policy_ForwardC.i \ - Object.i \ - Exception.h Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -860,9 +856,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -915,15 +910,15 @@ realclean: GIOP_Message_Version.inl \ operation_details.h Service_Context.h \ Service_Context.inl \ - target_specification.h \ - Object_KeyC.h \ - target_specification.i operation_details.i Invocation.i MProfile.h \ - PolicyC.h \ + target_specification.h target_specification.i operation_details.i \ + Invocation.i MProfile.h \ MProfile.i Profile.h \ Tagged_Components.h \ CONV_FRAMEC.h \ Tagged_Components.i \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i Environment.h Thread_Lane_Resources.h \ Thread_Lane_Resources.i \ @@ -964,18 +959,12 @@ realclean: $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -1017,6 +1006,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -1076,6 +1066,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -1086,6 +1078,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -1095,7 +1088,9 @@ realclean: CDR.i \ IOP_IORC.i \ Pluggable_Messaging_Utils.i \ - Incoming_Message_Queue.inl Transport.inl ORB_Core.h Resource_Factory.h \ + Incoming_Message_Queue.inl Transport.inl Exception.h \ + Exception.i ORB_Core.h \ + Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ @@ -1122,7 +1117,9 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -1134,28 +1131,24 @@ realclean: Pseudo_VarOut_T.cpp \ Environment.i \ Policy_ForwardC.i \ - Object.i \ - Exception.h Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -1178,9 +1171,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -1240,7 +1232,6 @@ realclean: Client_Strategy_Factory.h Wait_Strategy.h Wait_Strategy.inl \ Transport_Mux_Strategy.h Stub.h \ MProfile.h \ - PolicyC.h \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -1248,6 +1239,7 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -1290,7 +1282,8 @@ realclean: Codeset_Translator_Factory.h \ Codeset_Translator_Factory_T.h \ Codeset_Translator_Factory.h \ - Codeset_Translator_Factory_T.cpp + Codeset_Translator_Factory_T.cpp \ + debug.h .obj/Incoming_Message_Queue.o .obj/Incoming_Message_Queue.so .shobj/Incoming_Message_Queue.o .shobj/Incoming_Message_Queue.so: Incoming_Message_Queue.cpp \ Incoming_Message_Queue.h $(ACE_ROOT)/ace/pre.h \ @@ -1627,7 +1620,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp OctetSeqC.i \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -1638,27 +1640,15 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1673,13 +1663,13 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -1702,9 +1692,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -1845,10 +1834,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -1858,10 +1843,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1937,7 +1921,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1946,6 +1929,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ CONV_FRAMEC.h \ @@ -1958,12 +1945,6 @@ realclean: Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i Object_KeyC.h Messaging_PolicyValueC.h IOP_IORC.h \ - PolicyC.h \ - CurrentC.h \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ Messaging_PolicyValueC.i Stub.h \ MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ @@ -1975,6 +1956,12 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -2006,8 +1993,9 @@ realclean: CORBA_String.h params.i \ Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ PI_ForwardC.h OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i \ - PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h PortableInterceptorC.i \ + PI_ForwardC.i Object.h Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + PortableInterceptorC.i Policy_ForwardC.h \ $(ACE_ROOT)/ace/Map_Manager.h \ $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ @@ -2025,7 +2013,7 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h LocalObject.i \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ @@ -2194,7 +2182,17 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - Endpoint.h \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ + Connector_Registry.i \ + ORB_Core.h \ + Resource_Factory.h \ + $(ACE_ROOT)/ace/Service_Object.h \ + $(ACE_ROOT)/ace/Shared_Object.h \ + $(ACE_ROOT)/ace/Shared_Object.i \ + $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ + $(ACE_ROOT)/ace/Event_Handler.h \ + $(ACE_ROOT)/ace/Atomic_Op.h \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/OS_Dirent.h \ @@ -2243,18 +2241,6 @@ realclean: $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Endpoint.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Connector_Registry.i \ - ORB_Core.h \ - Resource_Factory.h \ - $(ACE_ROOT)/ace/Service_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.i \ - $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ - $(ACE_ROOT)/ace/Event_Handler.h \ - $(ACE_ROOT)/ace/Atomic_Op.h \ $(ACE_ROOT)/ace/Atomic_Op_T.h \ $(ACE_ROOT)/ace/Atomic_Op_T.i \ $(ACE_ROOT)/ace/Guard_T.h \ @@ -2327,6 +2313,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -2338,32 +2341,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2378,7 +2363,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -2420,8 +2404,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -2473,11 +2455,16 @@ realclean: GIOP_Message_Version.h \ GIOP_Message_Version.inl \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i \ Transport_Connector.h \ Transport_Connector.inl \ Protocol_Factory.h \ + Endpoint.h \ + Endpoint.i \ + debug.h \ Transport_Descriptor_Interface.h \ Transport_Descriptor_Interface.inl @@ -2645,7 +2632,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp OctetSeqC.i \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -2656,27 +2652,15 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2691,13 +2675,13 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -2720,9 +2704,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -2765,11 +2748,10 @@ realclean: $(ACE_ROOT)/ace/Lock_Adapter_T.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.cpp ORB_Core.i \ Server_Strategy_Factory.h debug.h Resume_Handle.h Resume_Handle.inl \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -2992,17 +2974,12 @@ realclean: $(ACE_ROOT)/ace/CDR_Base.h \ $(ACE_ROOT)/ace/CDR_Base.inl \ orbconf.h \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -3027,6 +3004,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -3037,6 +3016,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ CDR.i \ IOP_IORC.i \ @@ -3218,10 +3198,6 @@ realclean: OctetSeqC.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -3231,10 +3207,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3252,12 +3227,15 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Tagged_Components.i \ @@ -3365,6 +3343,7 @@ realclean: ORB_Core.i \ MProfile.h \ MProfile.i \ + debug.h \ Acceptor_Filter.h \ Acceptor_Filter.i \ Endpoint.h \ @@ -3520,28 +3499,6 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - Object_KeyC.h \ - Seq_Var_T.h \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Sequence_T.h \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.i \ - Sequence_T.cpp \ - Object_KeyC.i \ Acceptor_Filter.i .obj/iiop_endpoints.o .obj/iiop_endpoints.so .shobj/iiop_endpoints.o .shobj/iiop_endpoints.so: iiop_endpoints.cpp iiop_endpoints.h \ @@ -3615,7 +3572,6 @@ realclean: $(ACE_ROOT)/ace/CDR_Stream.i \ CDR.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4002,6 +3958,17 @@ realclean: CORBA_String.inl \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -4015,31 +3982,18 @@ realclean: Environment.i \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -4077,8 +4031,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -4431,6 +4383,17 @@ realclean: CORBA_String.inl \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -4444,31 +4407,18 @@ realclean: Environment.i \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -4506,8 +4456,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -4640,10 +4588,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -4653,10 +4597,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4732,7 +4675,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4741,6 +4683,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ CONV_FRAMEC.h \ @@ -4788,9 +4734,9 @@ realclean: CORBA_String.h params.i \ Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ PI_ForwardC.h OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i \ - PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + PI_ForwardC.i Object.h Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + CurrentC.h CurrentC.i Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i PortableInterceptorC.i \ $(ACE_ROOT)/ace/Map_Manager.h \ @@ -4810,9 +4756,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -4894,16 +4839,10 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -4945,6 +4884,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -5005,6 +4945,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -5015,6 +4957,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -5189,6 +5132,15 @@ realclean: CORBA_String.inl \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -5202,25 +5154,16 @@ realclean: Environment.i \ Policy_ForwardC.i \ Object.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -5258,8 +5201,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -5279,6 +5220,8 @@ realclean: Tagged_Components.h \ Tagged_Components.i \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i \ IIOP_Endpoint.h \ @@ -5634,10 +5577,6 @@ realclean: OctetSeqC.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -5647,10 +5586,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Exception.h \ Exception.i \ Typecode.i \ @@ -5659,12 +5597,15 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ CONV_FRAMEC.h \ @@ -5686,9 +5627,9 @@ realclean: CORBA_String.h params.i \ Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ PI_ForwardC.h OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i \ - PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + PI_ForwardC.i Object.h Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + CurrentC.h CurrentC.i Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i PortableInterceptorC.i \ $(ACE_ROOT)/ace/Map_Manager.h \ @@ -5705,9 +5646,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Lock_Adapter_T.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Lock_Adapter_T.h \ $(ACE_ROOT)/ace/Lock_Adapter_T.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.cpp ORB_Core.i \ Client_Strategy_Factory.h Environment.h Base_Transport_Property.h \ @@ -5725,8 +5665,8 @@ realclean: operation_details.h Service_Context.h \ Service_Context.inl \ target_specification.h target_specification.i operation_details.i \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Timer.h Incoming_Message_Queue.h Pluggable_Messaging_Utils.h \ + Transport.h Transport_Timer.h Incoming_Message_Queue.h \ + Pluggable_Messaging_Utils.h \ Pluggable_Messaging_Utils.i \ Incoming_Message_Queue.inl Transport.inl Invocation.i \ Connect_Strategy.h Thread_Lane_Resources.h \ @@ -6045,6 +5985,17 @@ realclean: CORBA_String.inl \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -6058,31 +6009,18 @@ realclean: Environment.i \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -6120,8 +6058,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -6155,6 +6091,8 @@ realclean: Tagged_Components.h \ Tagged_Components.i \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i \ IIOP_Endpoint.h \ @@ -6164,6 +6102,7 @@ realclean: IIOP_Profile.i \ MProfile.h \ MProfile.i \ + debug.h \ Protocols_Hooks.h \ Codeset_Manager.h @@ -6453,6 +6392,17 @@ realclean: CORBA_String.inl \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -6466,24 +6416,12 @@ realclean: Environment.i \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6535,8 +6473,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -6552,10 +6488,10 @@ realclean: Server_Strategy_Factory.h \ IIOP_Transport.h \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ Cache_Entries.inl \ Transport_Cache_Manager.inl \ Transport_Timer.h \ @@ -6709,10 +6645,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -6722,10 +6654,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6764,13 +6695,16 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i IOPC.i debug.h .obj/IIOPC.o .obj/IIOPC.so .shobj/IIOPC.o .shobj/IIOPC.so: IIOPC.cpp IIOPC.h \ @@ -6854,7 +6788,6 @@ realclean: Seq_Var_T.cpp \ IIOPC.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6930,28 +6863,15 @@ realclean: Typecode.i \ Any_Dual_Impl_T.h \ Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Environment.i \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - IOP_IORC.i \ - Object.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp @@ -7118,80 +7038,14 @@ realclean: Wait_Strategy.inl \ Wait_On_Reactor.h Wait_On_Leader_Follower.h Exclusive_TMS.h \ Transport_Mux_Strategy.h \ - IOPC.h \ - IOP_IORC.h \ - OctetSeqC.h \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/CDR_Stream.i \ - CDR.i \ - IOP_IORC.i \ - IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ - $(ACE_ROOT)/ace/Functor.h \ + Muxed_TMS.h $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ $(ACE_ROOT)/ace/Functor_T.h \ $(ACE_ROOT)/ace/Functor_T.i \ $(ACE_ROOT)/ace/Functor_T.cpp \ + $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - Exception.h \ - Exception.i \ - Typecode.i \ - Any.i \ - Any_Impl_T.inl \ - Any_Impl_T.cpp \ - Marshal.h \ - Marshal.i \ - debug.h \ - Any_Dual_Impl_T.h \ - Any_Dual_Impl_T.inl \ - Any_Dual_Impl_T.cpp \ - CORBA_String.h \ - CORBA_String.inl \ - IOP_CodecC.i \ - IOPC.i Muxed_TMS.h \ Blocked_Connect_Strategy.h Connect_Strategy.h TAO_Export.h \ Reactive_Connect_Strategy.h LF_Connect_Strategy.h \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -7548,8 +7402,6 @@ realclean: Exception.i \ Acceptor_Registry.i \ Connector_Registry.h \ - Endpoint.h \ - Endpoint.i \ Connector_Registry.i \ Reactive_Flushing_Strategy.h \ Flushing_Strategy.h \ @@ -7570,6 +7422,21 @@ realclean: CORBA_String.inl \ params.i \ Adapter.h \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -7581,30 +7448,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7659,8 +7510,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -8160,7 +8009,6 @@ realclean: TAO_Export.h \ corbafwd.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8264,34 +8112,6 @@ realclean: Environment.h \ Environment.i \ Any.h \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Any.i \ debug.h \ Valuetype_Adapter.h \ @@ -8314,6 +8134,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Set.inl \ $(ACE_ROOT)/ace/Unbounded_Set.cpp \ CONV_FRAMEC.h \ + Sequence.h \ + Managed_Types.h \ + Managed_Types.i \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ CONV_FRAMEC.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ @@ -8334,9 +8164,27 @@ realclean: PolicyFactory_Registry.h \ PortableInterceptorC.h \ PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ + Object.h \ + Policy_ForwardC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ @@ -8382,8 +8230,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -8473,7 +8319,6 @@ realclean: TAO_Export.h \ corbafwd.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8615,7 +8460,6 @@ realclean: TAO_Export.h \ corbafwd.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8717,37 +8561,9 @@ realclean: $(ACE_ROOT)/ace/CDR_Stream.i \ CDR.i \ Any.h \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ + Any.i \ Environment.h \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ - Any.i \ debug.h \ Valuetype_Adapter.h \ $(ACE_ROOT)/ace/Service_Object.h \ @@ -8769,6 +8585,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Set.inl \ $(ACE_ROOT)/ace/Unbounded_Set.cpp \ CONV_FRAMEC.h \ + Sequence.h \ + Managed_Types.h \ + Managed_Types.i \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ CONV_FRAMEC.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ @@ -8789,9 +8615,27 @@ realclean: PolicyFactory_Registry.h \ PortableInterceptorC.h \ PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ + Object.h \ + Policy_ForwardC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ @@ -8837,8 +8681,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -8985,52 +8827,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - corbafwd.h \ - orbconf.h \ - $(ACE_ROOT)/ace/Synch_Traits.h \ - $(ACE_ROOT)/ace/Lock.h \ - $(ACE_ROOT)/ace/Lock.inl \ - TAO_Export.h \ - corbafwd.i \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -9088,6 +8885,8 @@ realclean: $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Guard_T.h \ + $(ACE_ROOT)/ace/Lock.h \ + $(ACE_ROOT)/ace/Lock.inl \ $(ACE_ROOT)/ace/Guard_T.inl \ $(ACE_ROOT)/ace/Guard_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ @@ -9099,20 +8898,32 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ + corbafwd.h \ + orbconf.h \ + $(ACE_ROOT)/ace/Synch_Traits.h \ + TAO_Export.h \ + corbafwd.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ + CDR.h \ + CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ Any_Basic_Impl_T.h \ Any_Basic_Impl_T.inl \ Any_Basic_Impl_T.cpp \ + debug.h \ Any_Special_Impl_T.h \ Any_Special_Impl_T.inl \ Any_Special_Impl_T.cpp \ @@ -9123,7 +8934,11 @@ realclean: Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ + Managed_Types.h \ + Managed_Types.i \ CORBA_String.inl \ + Environment.h \ + Environment.i \ ORB_Core.h \ Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ @@ -9143,6 +8958,14 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Set.inl \ $(ACE_ROOT)/ace/Unbounded_Set.cpp \ CONV_FRAMEC.h \ + Sequence.h \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ CONV_FRAMEC.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ @@ -9158,9 +8981,27 @@ realclean: PolicyFactory_Registry.h \ PortableInterceptorC.h \ PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ + Object.h \ + Policy_ForwardC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ DynamicC.h \ DynamicC.i \ Messaging_SyncScopeC.h \ @@ -9200,8 +9041,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -9306,52 +9145,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - corbafwd.h \ - orbconf.h \ - $(ACE_ROOT)/ace/Synch_Traits.h \ - $(ACE_ROOT)/ace/Lock.h \ - $(ACE_ROOT)/ace/Lock.inl \ - TAO_Export.h \ - corbafwd.i \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -9409,6 +9203,8 @@ realclean: $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Guard_T.h \ + $(ACE_ROOT)/ace/Lock.h \ + $(ACE_ROOT)/ace/Lock.inl \ $(ACE_ROOT)/ace/Guard_T.inl \ $(ACE_ROOT)/ace/Guard_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ @@ -9420,11 +9216,25 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ + corbafwd.h \ + orbconf.h \ + $(ACE_ROOT)/ace/Synch_Traits.h \ + TAO_Export.h \ + corbafwd.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ - Any.i Exception.h Marshal.h \ - Marshal.i debug.h \ + Any.i CDR.h \ + CDR.i Exception.h \ + Environment.h Environment.i \ + Marshal.h Marshal.i \ CORBA_String.h \ + Managed_Types.h \ + Managed_Types.i \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ @@ -9618,7 +9428,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -9694,7 +9503,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp CurrentC.i @@ -9741,7 +9549,6 @@ realclean: $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/iosfwd.h \ Exception.i Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -9835,41 +9642,12 @@ realclean: $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ Any.i CDR.h \ - Any_SystemException.h Any.h \ - CORBA_String.h \ + CDR.i Any_SystemException.h \ + Any.h CORBA_String.h \ + Managed_Types.h \ + Managed_Types.i \ CORBA_String.inl \ $(ACE_ROOT)/ace/Malloc.h \ $(ACE_ROOT)/ace/Malloc.i \ @@ -10014,9 +9792,6 @@ realclean: $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ Sequence.h \ Managed_Types.h \ @@ -10041,18 +9816,29 @@ realclean: Seq_Out_T.inl \ Seq_Out_T.cpp \ Policy_ForwardC.i \ - IOP_IORC.h \ + MProfile.i \ + ORB.h \ + ServicesC.h \ OctetSeqC.h \ OctetSeqC.i \ VarOut_T.h \ VarOut_T.inl \ VarOut_T.cpp \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ + PolicyC.h \ + CurrentC.h \ + Object.h \ + IOP_IORC.h \ IOP_IORC.i \ Object.i \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -10093,7 +9879,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -10101,15 +9886,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -10137,15 +9913,13 @@ realclean: IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -10361,38 +10135,37 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ Seq_Var_T.h \ Seq_Var_T.inl \ Seq_Var_T.cpp \ Seq_Out_T.h \ Seq_Out_T.inl \ Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ OctetSeqC.i \ - IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ + Object.h \ + Policy_ForwardC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -10407,7 +10180,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -10449,8 +10221,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -10629,12 +10399,22 @@ realclean: $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ + MProfile.i \ + ORB.h \ + Exception.h \ + Exception.i \ + ServicesC.h \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ PolicyC.h \ CurrentC.h \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -10669,15 +10449,12 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -10685,15 +10462,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -10838,10 +10606,10 @@ realclean: target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -10854,9 +10622,8 @@ realclean: Transport.inl \ Invocation.i \ Connector_Registry.h \ - Endpoint.h \ - Endpoint.i \ Connector_Registry.i \ + debug.h \ Remote_Object_Proxy_Broker.h \ Object_Proxy_Broker.h \ Dynamic_Adapter.h \ @@ -10996,8 +10763,8 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i Object_KeyC.h \ - Object_KeyC.i $(ACE_ROOT)/ace/Thread_Mutex.h \ + Object.i \ + $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/OS_Dirent.h \ $(ACE_ROOT)/ace/os_include/os_dirent.h \ @@ -11037,7 +10804,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11078,7 +10844,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp CurrentC.i \ @@ -11188,9 +10953,6 @@ realclean: $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ @@ -11213,18 +10975,30 @@ realclean: Pseudo_VarOut_T.cpp \ Environment.i \ Policy_ForwardC.i \ - IOP_IORC.h \ + MProfile.i \ + ORB.h \ + Exception.h \ + Exception.i \ + ServicesC.h \ OctetSeqC.h \ OctetSeqC.i \ VarOut_T.h \ VarOut_T.inl \ VarOut_T.cpp \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + objectid.h \ + PolicyC.h \ + CurrentC.h \ + Object.h \ + IOP_IORC.h \ IOP_IORC.i \ Object.i \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11259,15 +11033,12 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -11275,14 +11046,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -11391,7 +11154,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11465,7 +11227,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp CurrentC.i \ @@ -11474,8 +11235,7 @@ realclean: PolicyC.i ORB.i ORB_Table.h \ $(ACE_ROOT)/ace/Null_Mutex.h \ ORB_Table.inl \ - Connector_Registry.h Endpoint.h \ - Endpoint.i \ + Connector_Registry.h \ Connector_Registry.i \ IOR_Parser.h $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ @@ -11497,7 +11257,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ MProfile.i \ ORB.h \ ORB_Core_Auto_Ptr.h \ @@ -11516,7 +11275,7 @@ realclean: params.i Adapter.h \ Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ - DynamicC.h \ + Objref_VarOut_T.h DynamicC.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ @@ -11540,9 +11299,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -11592,17 +11350,20 @@ realclean: GIOP_Message_Version.inl \ Refcounted_ObjectKey.h \ Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i default_ports.h ORBInitInfo.h ORBInitInfo.inl \ ORBInitializer_Registry.h TAO_Singleton_Manager.h \ TAO_Singleton_Manager.inl \ Policy_Manager.h \ Policy_Set.h \ + PolicyC.h \ Policy_Set.i \ LocalObject.h \ + debug.h \ Policy_Manager.i \ - CodecFactory_ORBInitializer.h TypeCodeFactory_Adapter.h \ - Valuetype_Adapter.h PICurrent_ORBInitializer.h \ + Valuetype_Adapter.h CodecFactory_ORBInitializer.h \ + TypeCodeFactory_Adapter.h PICurrent_ORBInitializer.h Object_KeyC.h \ $(ACE_ROOT)/ace/Dynamic_Service.h \ $(ACE_ROOT)/ace/Dynamic_Service_Base.h \ $(ACE_ROOT)/ace/Dynamic_Service.i \ @@ -11815,18 +11576,7 @@ realclean: Policy_ForwardC.i \ Any_Basic_Impl_T.h \ Any.h \ - Object.h \ - Policy_ForwardC.h \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11915,8 +11665,25 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ + Policy_ForwardC.h \ + MProfile.i \ + ORB.h \ + ServicesC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + ServicesC.i \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ PolicyC.h \ CurrentC.h \ + Object.h \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ @@ -11924,13 +11691,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -12035,7 +11795,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -12111,7 +11870,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp CurrentC.i \ @@ -12121,7 +11879,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -12131,6 +11888,7 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -12207,8 +11965,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -12269,10 +12025,10 @@ realclean: target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -12684,9 +12440,6 @@ realclean: $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ Sequence.h \ Managed_Types.h \ @@ -12721,18 +12474,29 @@ realclean: Seq_Out_T.inl \ Seq_Out_T.cpp \ Policy_ForwardC.i \ - IOP_IORC.h \ + MProfile.i \ + ORB.h \ + ServicesC.h \ OctetSeqC.h \ OctetSeqC.i \ VarOut_T.h \ VarOut_T.inl \ VarOut_T.cpp \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ + PolicyC.h \ + CurrentC.h \ + Object.h \ + IOP_IORC.h \ IOP_IORC.i \ Object.i \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -12773,21 +12537,11 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ CurrentC.i \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -12864,8 +12618,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -12926,10 +12678,10 @@ realclean: target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -13046,7 +12798,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -13122,7 +12873,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp CurrentC.i \ @@ -13132,7 +12882,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -13142,6 +12891,7 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -13218,8 +12968,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -13280,10 +13028,10 @@ realclean: target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -13362,52 +13110,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - corbafwd.h \ - orbconf.h \ - $(ACE_ROOT)/ace/Synch_Traits.h \ - $(ACE_ROOT)/ace/Lock.h \ - $(ACE_ROOT)/ace/Lock.inl \ - TAO_Export.h \ - corbafwd.i \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -13465,6 +13168,8 @@ realclean: $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Guard_T.h \ + $(ACE_ROOT)/ace/Lock.h \ + $(ACE_ROOT)/ace/Lock.inl \ $(ACE_ROOT)/ace/Guard_T.inl \ $(ACE_ROOT)/ace/Guard_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ @@ -13476,26 +13181,74 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ + corbafwd.h \ + orbconf.h \ + $(ACE_ROOT)/ace/Synch_Traits.h \ + TAO_Export.h \ + corbafwd.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ + Managed_Types.h \ + Managed_Types.i \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + CDR.h \ + CDR.i \ TimeBaseC.i \ Stub.h \ MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ + Policy_ForwardC.h \ + Sequence.h \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + Policy_ForwardC.i \ + MProfile.i \ + ORB.h \ + ServicesC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + ServicesC.i \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ PolicyC.h \ CurrentC.h \ + Object.h \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ @@ -13503,13 +13256,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -13534,15 +13280,13 @@ realclean: IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -13876,9 +13620,6 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ Sequence.h \ Managed_Types.h \ @@ -13916,6 +13657,10 @@ realclean: Seq_Out_T.inl \ Seq_Out_T.cpp \ Policy_ForwardC.i \ + MProfile.i \ + Profile.h \ + Tagged_Components.h \ + IOPC.h \ IOP_IORC.h \ OctetSeqC.h \ OctetSeqC.i \ @@ -13923,11 +13668,10 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + IOP_CodecC.h \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -13970,24 +13714,16 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ - MProfile.i \ - Profile.h \ - Tagged_Components.h \ - IOPC.h \ - IOP_CodecC.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Object.i \ IOP_CodecC.i \ IOPC.i \ CONV_FRAMEC.h \ @@ -13999,7 +13735,13 @@ realclean: Object_KeyC.h \ Object_KeyC.i \ Refcounted_ObjectKey.inl \ - Profile.i + Profile.i \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i .obj/Stub.o .obj/Stub.so .shobj/Stub.o .shobj/Stub.so: Stub.cpp Endpoint.h $(ACE_ROOT)/ace/pre.h \ corbafwd.h \ @@ -14089,9 +13831,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ Sequence.h \ Managed_Types.h \ @@ -14129,18 +13868,31 @@ realclean: Seq_Out_T.inl \ Seq_Out_T.cpp \ Policy_ForwardC.i \ - IOP_IORC.h \ + MProfile.i \ + ORB.h \ + Exception.h \ + Exception.i \ + ServicesC.h \ OctetSeqC.h \ OctetSeqC.i \ VarOut_T.h \ VarOut_T.inl \ VarOut_T.cpp \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ + PolicyC.h \ + CurrentC.h \ + Object.h \ + IOP_IORC.h \ IOP_IORC.i \ Object.i \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -14173,15 +13925,12 @@ realclean: $(ACE_ROOT)/ace/Node.cpp \ $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ - Exception.h \ - Exception.i \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -14189,15 +13938,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -14231,11 +13971,10 @@ realclean: corbafwd.h Service_Context.h \ Service_Context.inl \ target_specification.h target_specification.i operation_details.i \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -14274,7 +14013,8 @@ realclean: CORBA_String.h params.i \ Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ PI_ForwardC.h OctetSeqC.h StringSeqC.h StringSeqC.i PI_ForwardC.i \ - DynamicC.h DynamicC.i IOPC.h PolicyC.h PortableInterceptorC.i \ + Objref_VarOut_T.h DynamicC.h DynamicC.i IOPC.h PolicyC.h \ + PortableInterceptorC.i Policy_ForwardC.h \ $(ACE_ROOT)/ace/Map_Manager.h \ $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ @@ -14292,9 +14032,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object_KeyC.h \ - LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -14349,16 +14088,16 @@ realclean: Policy_Set.i \ Policy_Manager.h \ Policy_Set.h \ + debug.h \ Policy_Manager.i .obj/Typecode.o .obj/Typecode.so .shobj/Typecode.o .shobj/Typecode.so: Typecode.cpp \ Typecode.h \ $(ACE_ROOT)/ace/pre.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/post.h \ $(ACE_ROOT)/ace/ace_wchar.h \ $(ACE_ROOT)/ace/ace_wchar.inl \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Default_Constants.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/ACE_export.h \ @@ -14490,40 +14229,14 @@ realclean: $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ + Any.i \ CDR.h \ CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ - Any.i \ Marshal.h \ Marshal.i \ CORBA_String.h \ + Managed_Types.h \ + Managed_Types.i \ CORBA_String.inl \ debug.h \ $(ACE_ROOT)/ace/Null_Mutex.h @@ -14698,6 +14411,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -14709,32 +14439,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -14749,7 +14461,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -14791,8 +14502,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -15121,6 +14830,17 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -15134,24 +14854,12 @@ realclean: Environment.i \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -15166,7 +14874,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -15208,7 +14915,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -15608,7 +15314,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -15624,8 +15329,7 @@ realclean: Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ - Marshal.i \ - debug.h CurrentC.i \ + Marshal.i CurrentC.i \ Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i $(ACE_ROOT)/ace/Dynamic_Service.h \ @@ -15672,7 +15376,6 @@ realclean: corbafwd.i \ Messaging_SyncScopeC.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -15860,10 +15563,6 @@ realclean: VarOut_T.cpp \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -15873,10 +15572,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -15952,7 +15650,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -15961,18 +15658,18 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Context.inl \ - target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ - target_specification.i operation_details.i Transport.h Exception.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + target_specification.h target_specification.i operation_details.i \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -15992,12 +15689,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -16005,6 +15696,12 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -16014,18 +15711,20 @@ realclean: CONV_FRAMEC.i \ Tagged_Components.i \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i Timeprobe.h \ $(ACE_ROOT)/ace/Timeprobe.h \ $(ACE_ROOT)/ace/Malloc_Allocator.h \ $(ACE_ROOT)/ace/Malloc_Allocator.i \ - Object_KeyC.h debug.h Connector_Registry.h Endpoint.h \ - Endpoint.i \ + Object_KeyC.h debug.h Connector_Registry.h \ Connector_Registry.i \ Wait_Strategy.h Wait_Strategy.inl Transport_Mux_Strategy.h \ Bind_Dispatcher_Guard.h \ Bind_Dispatcher_Guard.i \ Transport_Mux_Strategy.h \ + Endpoint.h Endpoint.i \ Transport_Connector.h Transport_Connector.inl GIOP_Utils.h \ GIOP_Utils.i ORB_Core.h \ Resource_Factory.h \ @@ -16047,8 +15746,8 @@ realclean: CORBA_String.h params.i \ Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ PI_ForwardC.h OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i \ - PI_ForwardC.i DynamicC.h DynamicC.i IOPC.h PolicyC.h \ - PortableInterceptorC.i \ + PI_ForwardC.i Object.h Objref_VarOut_T.h DynamicC.h DynamicC.i IOPC.h \ + PolicyC.h PortableInterceptorC.i Policy_ForwardC.h \ $(ACE_ROOT)/ace/Map_Manager.h \ $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ @@ -16066,7 +15765,7 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h LocalObject.i \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ @@ -16212,10 +15911,6 @@ realclean: VarOut_T.cpp \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -16225,10 +15920,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -16304,7 +15998,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -16313,19 +16006,21 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -16349,12 +16044,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -16362,6 +16051,12 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -16372,6 +16067,8 @@ realclean: CONV_FRAMEC.i \ Tagged_Components.i \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i \ Endpoint.h \ @@ -16479,10 +16176,6 @@ realclean: VarOut_T.cpp \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -16492,10 +16185,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -16571,7 +16263,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -16580,19 +16271,21 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -16621,12 +16314,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -16634,6 +16321,12 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -16644,6 +16337,8 @@ realclean: CONV_FRAMEC.i \ Tagged_Components.i \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i \ Transport_Mux_Strategy.h @@ -16735,10 +16430,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -16748,10 +16439,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -16827,7 +16517,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -16836,12 +16525,14 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i @@ -16909,9 +16600,9 @@ realclean: StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ - DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -16929,9 +16620,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -16949,8 +16637,10 @@ realclean: VarOut_T.cpp \ IOP_IORC.i \ Object.i \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -17026,7 +16716,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -17050,8 +16739,6 @@ realclean: PolicyC.i \ PortableInterceptorC.i \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ ClientRequestInfo.inl ClientRequestInfo_i.h \ PICurrent.h \ @@ -17125,9 +16812,9 @@ realclean: StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ - DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -17145,9 +16832,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -17165,8 +16849,10 @@ realclean: VarOut_T.cpp \ IOP_IORC.i \ Object.i \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -17242,7 +16928,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -17270,8 +16955,6 @@ realclean: $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ ClientRequestInfo_i.inl Invocation.h CDR.h Synch_Reply_Dispatcher.h \ @@ -17286,11 +16969,10 @@ realclean: Messaging_SyncScopeC.h operation_details.h corbafwd.h Service_Context.h \ Service_Context.inl \ target_specification.h target_specification.i operation_details.i \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -17339,7 +17021,7 @@ realclean: $(ACE_ROOT)/ace/SString.i params.h objectid.h \ CORBA_String.h params.i \ Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ - PolicyC.h $(ACE_ROOT)/ace/Map_Manager.h \ + Policy_ForwardC.h $(ACE_ROOT)/ace/Map_Manager.h \ $(ACE_ROOT)/ace/Map_Manager.i \ $(ACE_ROOT)/ace/Map_Manager.cpp \ Parser_Registry.h \ @@ -17398,6 +17080,8 @@ realclean: CONV_FRAMEC.h \ Tagged_Components.i \ Refcounted_ObjectKey.h \ + Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i Tagged_Components.h Valuetype_Adapter.h debug.h \ $(ACE_ROOT)/ace/Dynamic_Service.h \ @@ -17481,30 +17165,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -17574,18 +17235,27 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ - $(ACE_ROOT)/ace/Auto_Ptr.cpp DynamicC.i Any.h + $(ACE_ROOT)/ace/Auto_Ptr.cpp \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + CDR.h \ + CDR.i DynamicC.i Any.h .obj/ClientInterceptorAdapter.o .obj/ClientInterceptorAdapter.so .shobj/ClientInterceptorAdapter.o .shobj/ClientInterceptorAdapter.so: ClientInterceptorAdapter.cpp \ ClientInterceptorAdapter.h \ @@ -17646,9 +17316,9 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -17666,9 +17336,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -17686,9 +17353,11 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -17764,7 +17433,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -17775,6 +17443,7 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -17786,11 +17455,8 @@ realclean: Interceptor_List.inl ClientInterceptorAdapter.inl ClientRequestInfo.h \ PortableInterceptorC.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ ClientRequestInfo.inl ClientRequestInfo_i.h \ - StringSeqC.h \ PICurrent.h \ PICurrent.inl \ ClientRequestInfo_i.inl Invocation.h CDR.h Synch_Reply_Dispatcher.h \ @@ -17806,11 +17472,10 @@ realclean: IOPC.h \ Service_Context.inl \ target_specification.h target_specification.i operation_details.i \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -17960,7 +17625,6 @@ realclean: Sequence_T.cpp OctetSeqC.i \ StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -18102,9 +17766,9 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -18122,9 +17786,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -18142,9 +17803,11 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -18220,7 +17883,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -18231,6 +17893,7 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -18240,7 +17903,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -18248,6 +17910,7 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -18268,15 +17931,13 @@ realclean: IOPC.h \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -18301,7 +17962,6 @@ realclean: DynamicC.h \ ClientRequestInfo_i.h \ PortableInterceptorC.h \ - StringSeqC.h \ PICurrent.h \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ @@ -18378,9 +18038,9 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -18396,9 +18056,6 @@ realclean: $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -18416,9 +18073,11 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -18494,7 +18153,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -18505,13 +18163,13 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ - PolicyC.i PortableInterceptorC.i LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl ORB_Core.h corbafwd.h \ - Resource_Factory.h \ + PolicyC.i PortableInterceptorC.i LocalObject.h LocalObject.i \ + PICurrent.inl ORB_Core.h corbafwd.h Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ @@ -18597,6 +18255,7 @@ realclean: GIOPC.h \ GIOPC.i \ Object_KeyC.h \ + Object_KeyC.i \ Tagged_Profile.i \ Service_Context.h \ Service_Context.inl \ @@ -18697,8 +18356,8 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i Object_KeyC.h \ - Object_KeyC.i $(ACE_ROOT)/ace/Thread_Mutex.h \ + Object.i \ + $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/OS_Dirent.h \ $(ACE_ROOT)/ace/os_include/os_dirent.h \ @@ -18734,12 +18393,10 @@ realclean: $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Thread_Mutex.inl LocalObject.i \ PortableInterceptorC.h PI_ForwardC.h OctetSeqC.h StringSeqC.h \ - Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ + Sequence.h StringSeqC.i PI_ForwardC.i Objref_VarOut_T.h DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ - Object.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -18780,7 +18437,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -18791,6 +18447,7 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -18958,30 +18615,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -19051,24 +18685,52 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ - $(ACE_ROOT)/ace/Auto_Ptr.cpp DynamicC.i \ + $(ACE_ROOT)/ace/Auto_Ptr.cpp \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + CDR.h \ + CDR.i DynamicC.i \ Stub.h \ MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ + Policy_ForwardC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Policy_ForwardC.i \ + MProfile.i \ + ORB.h \ + ServicesC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + ServicesC.i \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ PolicyC.h \ CurrentC.h \ + Object.h \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ @@ -19076,13 +18738,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -19107,15 +18762,13 @@ realclean: IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -19324,7 +18977,10 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -19339,15 +18995,11 @@ realclean: IOP_IORC.h \ OctetSeqC.h \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -19362,13 +19014,13 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -19391,9 +19043,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -19512,29 +19163,7 @@ realclean: $(ACE_ROOT)/ace/CDR_Stream.i \ CDR.i Any_Dual_Impl_T.h \ Any.h \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -19604,6 +19233,9 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ @@ -19611,9 +19243,10 @@ realclean: Any_Dual_Impl_T.h \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp @@ -19772,10 +19405,6 @@ realclean: OctetSeqC.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -19785,10 +19414,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -19818,6 +19446,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ GIOPC.h \ @@ -19856,10 +19488,10 @@ realclean: target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -20199,7 +19831,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp OctetSeqC.i \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -20210,27 +19851,15 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -20245,13 +19874,13 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -20274,9 +19903,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -20344,14 +19972,15 @@ realclean: Resource_Factory.h \ CONV_FRAMEC.h \ default_resource.i debug.h \ - MProfile.h PolicyC.h \ - MProfile.i Profile.h \ + MProfile.h MProfile.i \ + Profile.h \ Tagged_Components.h \ Tagged_Components.i \ GIOP_Message_Version.h \ GIOP_Message_Version.inl \ Refcounted_ObjectKey.h \ Object_KeyC.h \ + Object_KeyC.i \ Refcounted_ObjectKey.inl \ Profile.i Stub.h MProfile.h \ ORB.h \ @@ -20360,6 +19989,7 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -20378,15 +20008,14 @@ realclean: $(ACE_ROOT)/ace/Reverse_Lock_T.inl \ $(ACE_ROOT)/ace/Reverse_Lock_T.cpp \ Leader_Follower.i \ - Connector_Registry.h Endpoint.h \ - Endpoint.i \ + Connector_Registry.h \ Connector_Registry.i \ Sync_Strategies.h \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -20464,11 +20093,12 @@ realclean: Policy_Set.h \ Policy_Set.i \ LocalObject.h \ + debug.h \ Policy_Manager.i \ Protocols_Hooks.h IORInterceptor_Adapter.h \ IORInterceptor_Adapter_Factory.h \ IORInterceptor_Adapter.h \ - Buffering_Constraint_Policy.h \ + Valuetype_Adapter.h Buffering_Constraint_Policy.h \ Buffering_Constraint_Policy.i \ LF_Event_Loop_Thread_Helper.h \ LF_Strategy.h \ @@ -20648,7 +20278,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp OctetSeqC.i \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -20659,27 +20298,15 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -20694,13 +20321,13 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -20723,9 +20350,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -21369,7 +20995,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp OctetSeqC.i \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -21380,40 +21015,28 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -21436,9 +21059,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -21698,6 +21320,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -21709,32 +21348,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -21749,7 +21370,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -21791,8 +21411,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -22021,6 +21639,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -22032,32 +21667,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -22072,7 +21689,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -22114,8 +21730,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -22345,6 +21959,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -22356,32 +21987,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -22396,7 +22009,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -22438,8 +22050,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -22668,6 +22278,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -22679,32 +22306,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -22719,7 +22328,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -22761,8 +22369,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -22822,11 +22428,12 @@ realclean: LF_Event.inl \ LF_Event_Binder.h \ LF_Event_Binder.inl \ + debug.h \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -23028,6 +22635,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -23039,32 +22663,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -23079,7 +22685,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -23121,8 +22726,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -23175,10 +22778,10 @@ realclean: $(ACE_ROOT)/ace/Reverse_Lock_T.cpp \ Leader_Follower.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -23194,7 +22797,8 @@ realclean: LF_Event.h \ LF_Event.inl \ LF_Invocation_Event.inl \ - Queued_Message.inl + Queued_Message.inl \ + debug.h .obj/LF_Event.o .obj/LF_Event.so .shobj/LF_Event.o .shobj/LF_Event.so: LF_Event.cpp \ LF_Event.h \ @@ -23373,6 +22977,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -23384,32 +23005,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -23424,7 +23027,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -23466,8 +23068,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -23761,6 +23361,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -23772,32 +23389,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -23812,7 +23411,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -23854,8 +23452,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -24340,16 +23936,10 @@ realclean: TAO_Export.h \ corbafwd.i \ Transport.h \ - Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -24391,6 +23981,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -24451,6 +24042,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -24461,6 +24054,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -24491,19 +24085,19 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Unbounded_Queue.h \ $(ACE_ROOT)/ace/Node.h \ $(ACE_ROOT)/ace/Node.cpp \ $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ + Exception.h \ + Exception.i \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -24524,8 +24118,6 @@ realclean: Sync_Strategies.i \ Buffering_Constraint_Policy.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ Buffering_Constraint_Policy.i \ Stub.h \ @@ -24542,7 +24134,8 @@ realclean: ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ - Stub.i + Stub.i \ + debug.h .obj/TAO_Internal.o .obj/TAO_Internal.so .shobj/TAO_Internal.o .shobj/TAO_Internal.so: TAO_Internal.cpp TAO_Internal.h \ $(ACE_ROOT)/ace/pre.h TAO_Export.h \ @@ -24730,7 +24323,27 @@ realclean: VarOut_T.cpp \ CONV_FRAMEC.i \ default_resource.i \ - Adapter.h Object.h \ + Adapter.h Exception.h \ + Exception.i Adapter.i \ + IIOP_Factory.h \ + Protocol_Factory.h \ + MCAST_Parser.h IOR_Parser.h \ + IOR_Parser.i \ + CORBA_String.h \ + CORBA_String.inl \ + MCAST_Parser.i CORBANAME_Parser.h CORBANAME_Parser.i CORBALOC_Parser.h \ + CORBALOC_Parser.i FILE_Parser.h FILE_Parser.i DLL_Parser.h DLL_Parser.i \ + StringSeqC.h Sequence.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp StringSeqC.i \ + ORB_Core.h corbafwd.h Resource_Factory.h params.h objectid.h \ + CORBA_String.h params.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h OctetSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -24741,37 +24354,15 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - IIOP_Factory.h \ - Protocol_Factory.h \ - MCAST_Parser.h IOR_Parser.h \ - IOR_Parser.i \ - CORBA_String.h \ - CORBA_String.inl \ - MCAST_Parser.i CORBANAME_Parser.h CORBANAME_Parser.i CORBALOC_Parser.h \ - CORBALOC_Parser.i FILE_Parser.h FILE_Parser.i DLL_Parser.h DLL_Parser.i \ - StringSeqC.h Sequence.h StringSeqC.i ORB_Core.h corbafwd.h \ - Resource_Factory.h params.h objectid.h CORBA_String.h \ - params.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h PI_ForwardC.i DynamicC.h \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -24785,13 +24376,13 @@ realclean: Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ - Marshal.i \ - debug.h DynamicC.i \ + Marshal.i DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -24814,9 +24405,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -25021,10 +24611,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -25034,10 +24620,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -25068,12 +24653,15 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ GIOPC.h \ @@ -25088,13 +24676,13 @@ realclean: $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ PortableInterceptorC.h PI_ForwardC.h StringSeqC.h Sequence.h \ - StringSeqC.i PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + StringSeqC.i PI_ForwardC.i Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + CurrentC.h CurrentC.i Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ - PolicyC.i PortableInterceptorC.i LocalObject.h Object_KeyC.h \ - LocalObject.i PICurrent.inl TAO_Server_Request.i CDR.h Environment.h \ - Principal.h Pseudo_VarOut_T.h \ + PolicyC.i PortableInterceptorC.i LocalObject.h LocalObject.i \ + PICurrent.inl TAO_Server_Request.i CDR.h Environment.h Principal.h \ + Pseudo_VarOut_T.h \ Principal.i ORB_Core.h \ Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ @@ -25182,11 +24770,10 @@ realclean: Pluggable_Messaging_Utils.h \ Pluggable_Messaging.i \ GIOP_Utils.h GIOP_Utils.i \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -25197,11 +24784,10 @@ realclean: .obj/Typecode_Constants.o .obj/Typecode_Constants.so .shobj/Typecode_Constants.o .shobj/Typecode_Constants.so: Typecode_Constants.cpp \ Typecode.h \ $(ACE_ROOT)/ace/pre.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/post.h \ $(ACE_ROOT)/ace/ace_wchar.h \ $(ACE_ROOT)/ace/ace_wchar.inl \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Default_Constants.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/ACE_export.h \ @@ -25373,7 +24959,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -25461,36 +25046,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -25560,6 +25116,9 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i @@ -25760,16 +25319,10 @@ realclean: corbafwd.i \ Wait_Strategy.inl \ Transport.h \ - Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -25811,6 +25364,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -25871,6 +25425,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -25881,6 +25437,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -26090,6 +25647,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -26101,32 +25675,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -26141,7 +25697,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -26182,8 +25737,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -26227,10 +25780,10 @@ realclean: $(ACE_ROOT)/ace/Lock_Adapter_T.cpp \ ORB_Core.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -26421,6 +25974,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -26432,32 +26002,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -26472,7 +26024,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -26514,8 +26065,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -26576,10 +26125,10 @@ realclean: $(ACE_ROOT)/ace/Reverse_Lock_T.cpp \ Leader_Follower.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -26598,12 +26147,12 @@ realclean: LF_Event.inl \ LF_Invocation_Event.inl \ GIOP_Message_Version.h \ - GIOP_Message_Version.inl + GIOP_Message_Version.inl \ + debug.h .obj/Transport_Mux_Strategy.o .obj/Transport_Mux_Strategy.so .shobj/Transport_Mux_Strategy.o .shobj/Transport_Mux_Strategy.so: Transport_Mux_Strategy.cpp \ Transport_Mux_Strategy.h \ $(ACE_ROOT)/ace/pre.h \ - IOPC.h \ corbafwd.h \ $(ACE_ROOT)/ace/CDR_Base.h \ $(ACE_ROOT)/ace/post.h \ @@ -26638,165 +26187,12 @@ realclean: $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ - corbafwd.i \ - IOP_IORC.h \ - OctetSeqC.h \ - Seq_Var_T.h \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/OS_String.h \ - $(ACE_ROOT)/ace/OS_String.inl \ - $(ACE_ROOT)/ace/os_include/os_string.h \ - $(ACE_ROOT)/ace/os_include/os_strings.h \ - $(ACE_ROOT)/ace/os_include/os_ctype.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Time_Value.h \ - $(ACE_ROOT)/ace/Time_Value.inl \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ - $(ACE_ROOT)/ace/CDR_Stream.i \ - CDR.i \ - IOP_IORC.i \ - IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ - $(ACE_ROOT)/ace/Functor.h \ - $(ACE_ROOT)/ace/Functor.i \ - $(ACE_ROOT)/ace/ACE.h \ - $(ACE_ROOT)/ace/Flag_Manip.h \ - $(ACE_ROOT)/ace/Flag_Manip.i \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/OS_Dirent.h \ - $(ACE_ROOT)/ace/os_include/os_dirent.h \ - $(ACE_ROOT)/ace/OS_Dirent.inl \ - $(ACE_ROOT)/ace/OS_TLI.h \ - $(ACE_ROOT)/ace/OS_TLI.inl \ - $(ACE_ROOT)/ace/os_include/os_dlfcn.h \ - $(ACE_ROOT)/ace/os_include/os_netdb.h \ - $(ACE_ROOT)/ace/os_include/netinet/os_in.h \ - $(ACE_ROOT)/ace/os_include/sys/os_socket.h \ - $(ACE_ROOT)/ace/os_include/sys/os_uio.h \ - $(ACE_ROOT)/ace/os_include/net/os_if.h \ - $(ACE_ROOT)/ace/os_include/sys/os_sem.h \ - $(ACE_ROOT)/ace/os_include/sys/os_ipc.h \ - $(ACE_ROOT)/ace/Min_Max.h \ - $(ACE_ROOT)/ace/os_include/os_pthread.h \ - $(ACE_ROOT)/ace/os_include/os_assert.h \ - $(ACE_ROOT)/ace/os_include/os_fcntl.h \ - $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ - $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ - $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ - $(ACE_ROOT)/ace/os_include/os_pwd.h \ - $(ACE_ROOT)/ace/os_include/os_stropts.h \ - $(ACE_ROOT)/ace/os_include/os_termios.h \ - $(ACE_ROOT)/ace/os_include/os_aio.h \ - $(ACE_ROOT)/ace/os_include/sys/os_un.h \ - $(ACE_ROOT)/ace/os_include/os_poll.h \ - $(ACE_ROOT)/ace/os_include/sys/os_msg.h \ - $(ACE_ROOT)/ace/os_include/sys/os_utsname.h \ - $(ACE_ROOT)/ace/os_include/os_syslog.h \ - $(ACE_ROOT)/ace/OS.i \ - $(ACE_ROOT)/ace/Handle_Ops.h \ - $(ACE_ROOT)/ace/Handle_Ops.i \ - $(ACE_ROOT)/ace/Lib_Find.h \ - $(ACE_ROOT)/ace/Lib_Find.i \ - $(ACE_ROOT)/ace/Init_ACE.h \ - $(ACE_ROOT)/ace/Init_ACE.i \ - $(ACE_ROOT)/ace/Sock_Connect.h \ - $(ACE_ROOT)/ace/Sock_Connect.i \ - $(ACE_ROOT)/ace/ACE.i \ - $(ACE_ROOT)/ace/Functor_T.h \ - $(ACE_ROOT)/ace/Functor_T.i \ - $(ACE_ROOT)/ace/Functor_T.cpp \ - $(ACE_ROOT)/ace/Log_Msg.h \ - $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ - $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ - $(ACE_ROOT)/ace/Guard_T.h \ - $(ACE_ROOT)/ace/Guard_T.inl \ - $(ACE_ROOT)/ace/Guard_T.cpp \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.h \ - $(ACE_ROOT)/ace/Node.h \ - $(ACE_ROOT)/ace/Node.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.inl \ - $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ - $(ACE_ROOT)/ace/Thread_Mutex.h \ - $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ - Typecode.i \ - Any.i \ - Any_Impl_T.inl \ - Any_Impl_T.cpp \ - Marshal.h \ - Marshal.i \ - debug.h \ - $(ACE_ROOT)/ace/Auto_Ptr.h \ - $(ACE_ROOT)/ace/Auto_Ptr.i \ - $(ACE_ROOT)/ace/Auto_Ptr.cpp \ - Any_Dual_Impl_T.h \ - Any_Dual_Impl_T.inl \ - Any_Dual_Impl_T.cpp \ - CORBA_String.h \ - CORBA_String.inl \ - IOP_CodecC.i \ - IOPC.i \ - Reply_Dispatcher.h \ - Reply_Dispatcher.i + corbafwd.i .obj/Exclusive_TMS.o .obj/Exclusive_TMS.so .shobj/Exclusive_TMS.o .shobj/Exclusive_TMS.so: Exclusive_TMS.cpp \ Exclusive_TMS.h \ $(ACE_ROOT)/ace/pre.h \ Transport_Mux_Strategy.h \ - IOPC.h \ corbafwd.h \ $(ACE_ROOT)/ace/CDR_Base.h \ $(ACE_ROOT)/ace/post.h \ @@ -26832,6 +26228,9 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ + Reply_Dispatcher.h \ + Reply_Dispatcher.i \ + Pluggable_Messaging_Utils.h \ IOP_IORC.h \ OctetSeqC.h \ Seq_Var_T.h \ @@ -26878,24 +26277,15 @@ realclean: $(ACE_ROOT)/ace/CDR_Stream.i \ CDR.i \ IOP_IORC.i \ - IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + Pluggable_Messaging_Utils.i \ + debug.h Transport.h \ + corbafwd.h Transport_Cache_Manager.h \ + Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ + $(ACE_ROOT)/ace/Recyclable.h \ + $(ACE_ROOT)/ace/Recyclable.inl \ + Cache_Entries.inl \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -26956,44 +26346,8 @@ realclean: $(ACE_ROOT)/ace/Guard_T.inl \ $(ACE_ROOT)/ace/Guard_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.h \ - $(ACE_ROOT)/ace/Node.h \ - $(ACE_ROOT)/ace/Node.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.inl \ - $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ - Typecode.i \ - Any.i \ - Any_Impl_T.inl \ - Any_Impl_T.cpp \ - Marshal.h \ - Marshal.i \ - debug.h \ - $(ACE_ROOT)/ace/Auto_Ptr.h \ - $(ACE_ROOT)/ace/Auto_Ptr.i \ - $(ACE_ROOT)/ace/Auto_Ptr.cpp \ - Any_Dual_Impl_T.h \ - Any_Dual_Impl_T.inl \ - Any_Dual_Impl_T.cpp \ - CORBA_String.h \ - CORBA_String.inl \ - IOP_CodecC.i \ - IOPC.i \ - Reply_Dispatcher.h \ - Reply_Dispatcher.i \ - Pluggable_Messaging_Utils.h \ - Pluggable_Messaging_Utils.i \ - Transport.h corbafwd.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ - Cache_Entries.h \ - Transport_Descriptor_Interface.h \ - $(ACE_ROOT)/ace/Recyclable.h \ - $(ACE_ROOT)/ace/Recyclable.inl \ - Cache_Entries.inl \ $(ACE_ROOT)/ace/Null_Mutex.h \ Transport_Cache_Manager.inl \ Transport_Timer.h TAO_Export.h \ @@ -27011,7 +26365,6 @@ realclean: Muxed_TMS.h \ $(ACE_ROOT)/ace/pre.h \ Transport_Mux_Strategy.h \ - IOPC.h \ corbafwd.h \ $(ACE_ROOT)/ace/CDR_Base.h \ $(ACE_ROOT)/ace/post.h \ @@ -27047,71 +26400,6 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - IOP_IORC.h \ - OctetSeqC.h \ - Seq_Var_T.h \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/OS_String.h \ - $(ACE_ROOT)/ace/OS_String.inl \ - $(ACE_ROOT)/ace/os_include/os_string.h \ - $(ACE_ROOT)/ace/os_include/os_strings.h \ - $(ACE_ROOT)/ace/os_include/os_ctype.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Time_Value.h \ - $(ACE_ROOT)/ace/Time_Value.inl \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ - $(ACE_ROOT)/ace/CDR_Stream.i \ - CDR.i \ - IOP_IORC.i \ - IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ $(ACE_ROOT)/ace/ACE.h \ @@ -27119,11 +26407,22 @@ realclean: $(ACE_ROOT)/ace/Flag_Manip.i \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/OS_Dirent.h \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/os_include/os_errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ $(ACE_ROOT)/ace/os_include/os_dirent.h \ $(ACE_ROOT)/ace/OS_Dirent.inl \ + $(ACE_ROOT)/ace/OS_String.h \ + $(ACE_ROOT)/ace/OS_String.inl \ + $(ACE_ROOT)/ace/os_include/os_string.h \ + $(ACE_ROOT)/ace/os_include/os_strings.h \ + $(ACE_ROOT)/ace/os_include/os_ctype.h \ + $(ACE_ROOT)/ace/OS_Memory.h \ + $(ACE_ROOT)/ace/OS_Memory.inl \ $(ACE_ROOT)/ace/OS_TLI.h \ $(ACE_ROOT)/ace/OS_TLI.inl \ $(ACE_ROOT)/ace/os_include/os_dlfcn.h \ + $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/os_include/os_netdb.h \ $(ACE_ROOT)/ace/os_include/netinet/os_in.h \ $(ACE_ROOT)/ace/os_include/sys/os_socket.h \ @@ -27131,6 +26430,8 @@ realclean: $(ACE_ROOT)/ace/os_include/net/os_if.h \ $(ACE_ROOT)/ace/os_include/sys/os_sem.h \ $(ACE_ROOT)/ace/os_include/sys/os_ipc.h \ + $(ACE_ROOT)/ace/Time_Value.h \ + $(ACE_ROOT)/ace/Time_Value.inl \ $(ACE_ROOT)/ace/Min_Max.h \ $(ACE_ROOT)/ace/os_include/os_pthread.h \ $(ACE_ROOT)/ace/os_include/os_assert.h \ @@ -27162,6 +26463,7 @@ realclean: $(ACE_ROOT)/ace/Functor_T.h \ $(ACE_ROOT)/ace/Functor_T.i \ $(ACE_ROOT)/ace/Functor_T.cpp \ + $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Log_Msg.h \ $(ACE_ROOT)/ace/Log_Priority.h \ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ @@ -27171,47 +26473,56 @@ realclean: $(ACE_ROOT)/ace/Guard_T.inl \ $(ACE_ROOT)/ace/Guard_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.h \ - $(ACE_ROOT)/ace/Node.h \ - $(ACE_ROOT)/ace/Node.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.inl \ - $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ - $(ACE_ROOT)/ace/Thread_Mutex.h \ - $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ - Typecode.i \ - Any.i \ - Any_Impl_T.inl \ - Any_Impl_T.cpp \ - Marshal.h \ - Marshal.i \ - debug.h \ - $(ACE_ROOT)/ace/Auto_Ptr.h \ - $(ACE_ROOT)/ace/Auto_Ptr.i \ - $(ACE_ROOT)/ace/Auto_Ptr.cpp \ - Any_Dual_Impl_T.h \ - Any_Dual_Impl_T.inl \ - Any_Dual_Impl_T.cpp \ - CORBA_String.h \ - CORBA_String.inl \ - IOP_CodecC.i \ - IOPC.i \ + $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/Null_Mutex.h \ Reply_Dispatcher.h \ Reply_Dispatcher.i \ GIOP_Message_Version.h \ GIOP_Message_Version.inl \ + debug.h \ Pluggable_Messaging_Utils.h \ + IOP_IORC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + Sequence.h \ + Managed_Types.h \ + Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + OctetSeqC.i \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + CDR.h \ + $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ + $(ACE_ROOT)/ace/Message_Block.h \ + $(ACE_ROOT)/ace/Message_Block.i \ + $(ACE_ROOT)/ace/Message_Block_T.h \ + $(ACE_ROOT)/ace/Message_Block_T.i \ + $(ACE_ROOT)/ace/Message_Block_T.cpp \ + $(ACE_ROOT)/ace/CDR_Stream.i \ + CDR.i \ + IOP_IORC.i \ Pluggable_Messaging_Utils.i \ - Transport.h corbafwd.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h corbafwd.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ + $(ACE_ROOT)/ace/Thread_Mutex.h \ + $(ACE_ROOT)/ace/Thread_Mutex.inl \ Transport_Cache_Manager.inl \ Transport_Timer.h TAO_Export.h \ $(ACE_ROOT)/ace/Event_Handler.h \ @@ -27230,6 +26541,8 @@ realclean: $(ACE_ROOT)/ace/DLL.h \ $(ACE_ROOT)/ace/Service_Object.i \ $(ACE_ROOT)/ace/Unbounded_Set.h \ + $(ACE_ROOT)/ace/Node.h \ + $(ACE_ROOT)/ace/Node.cpp \ $(ACE_ROOT)/ace/Unbounded_Set.inl \ $(ACE_ROOT)/ace/Unbounded_Set.cpp CONV_FRAMEC.h \ CONV_FRAMEC.i $(ACE_ROOT)/ace/SString.h \ @@ -27237,13 +26550,52 @@ realclean: $(ACE_ROOT)/ace/String_Base_Const.h \ $(ACE_ROOT)/ace/String_Base.i \ $(ACE_ROOT)/ace/String_Base.cpp \ + $(ACE_ROOT)/ace/Auto_Ptr.h \ + $(ACE_ROOT)/ace/Auto_Ptr.i \ + $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(ACE_ROOT)/ace/SString.i params.h objectid.h \ - CORBA_String.h params.i \ - Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ - PI_ForwardC.h OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i \ - PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + CORBA_String.h \ + CORBA_String.inl \ + $(ACE_ROOT)/ace/Unbounded_Queue.h \ + $(ACE_ROOT)/ace/Unbounded_Queue.inl \ + $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ + params.i Adapter.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Environment.h \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ + Environment.i \ + Policy_ForwardC.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ + Typecode.h \ + Typecode.i \ + Any.i \ + Any_Dual_Impl_T.inl \ + Any_Dual_Impl_T.cpp \ + Marshal.h \ + Marshal.i \ + CORBA_String.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ + IOP_CodecC.h \ + Any_Impl_T.h \ + Any_Impl_T.inl \ + Any_Impl_T.cpp \ + Object.h \ + IOP_CodecC.i IOPC.i \ + PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ + Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i PortableInterceptorC.i \ $(ACE_ROOT)/ace/Map_Manager.h \ @@ -27251,7 +26603,7 @@ realclean: $(ACE_ROOT)/ace/Map_Manager.cpp \ Parser_Registry.h \ Parser_Registry.i \ - Service_Callbacks.h \ + Service_Callbacks.h IOPC.h \ Service_Callbacks.i \ Fault_Tolerance_Service.h \ Fault_Tolerance_Service.i \ @@ -27263,9 +26615,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -27633,6 +26984,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -27644,32 +27012,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -27684,7 +27034,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -27726,8 +27075,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -27776,10 +27123,10 @@ realclean: Pluggable_Messaging_Utils.h \ Pluggable_Messaging_Utils.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -27971,16 +27318,10 @@ realclean: $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ corbafwd.i \ - Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -28022,6 +27363,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -28082,6 +27424,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -28092,6 +27436,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -28139,6 +27484,15 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -28152,25 +27506,16 @@ realclean: Environment.i \ Policy_ForwardC.i \ Object.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -28211,8 +27556,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -28257,7 +27600,8 @@ realclean: $(ACE_ROOT)/ace/Lock_Adapter_T.h \ $(ACE_ROOT)/ace/Lock_Adapter_T.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.cpp \ - ORB_Core.i + ORB_Core.i \ + debug.h .obj/IOP_IORC.o .obj/IOP_IORC.so .shobj/IOP_IORC.o .shobj/IOP_IORC.so: IOP_IORC.cpp IOP_IORC.h \ $(ACE_ROOT)/ace/pre.h \ @@ -28341,22 +27685,7 @@ realclean: $(ACE_ROOT)/ace/CDR_Stream.i \ CDR.i IOP_IORC.i \ Any_Dual_Impl_T.h Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - IOP_IORC.h \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -28426,6 +27755,9 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ @@ -28433,9 +27765,10 @@ realclean: Any_Dual_Impl_T.h \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp @@ -28477,18 +27810,26 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - VarOut_T.h \ + Objref_VarOut_T.h \ + varbase.h \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Environment.h \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ + Environment.i \ + Any_Impl_T.h \ + Any.h \ + $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_Memory.h \ $(ACE_ROOT)/ace/OS_Errno.h \ $(ACE_ROOT)/ace/os_include/os_errno.h \ $(ACE_ROOT)/ace/OS_Errno.inl \ $(ACE_ROOT)/ace/OS_Memory.inl \ - VarOut_T.inl \ - VarOut_T.cpp \ - Any_Impl_T.h \ - Any.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ $(ACE_ROOT)/ace/OS_String.inl \ $(ACE_ROOT)/ace/os_include/os_string.h \ @@ -28504,42 +27845,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -28615,7 +27921,8 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ + CDR.h \ + CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -28623,17 +27930,35 @@ realclean: Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ + Managed_Types.h \ + Managed_Types.i \ CORBA_String.inl \ - IOP_CodecC.i Stub.h \ + Object.h \ + Policy_ForwardC.h \ + Sequence.h \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + IOP_IORC.i \ + Object.i IOP_CodecC.i \ + Stub.h \ MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -28641,6 +27966,12 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -28664,15 +27995,13 @@ realclean: IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -28799,10 +28128,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -28812,10 +28137,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -28891,7 +28215,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -28900,17 +28223,15 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i IOPC.i \ Stub.h \ MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -28918,6 +28239,12 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -28939,15 +28266,13 @@ realclean: IOPC.h \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -29111,31 +28436,7 @@ realclean: CONV_FRAMEC.i \ Any_Dual_Impl_T.h \ Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -29205,15 +28506,19 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp @@ -29304,10 +28609,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -29317,10 +28618,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -29396,7 +28696,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -29405,6 +28704,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ CONV_FRAMEC.h \ @@ -29505,10 +28808,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -29518,10 +28817,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -29597,7 +28895,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -29606,6 +28903,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Context.inl @@ -29693,21 +28994,7 @@ realclean: CDR.i \ IOP_IORC.i \ Any_Dual_Impl_T.h Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -29777,6 +29064,9 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ @@ -29784,9 +29074,10 @@ realclean: Any_Dual_Impl_T.h \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp GIOPC.i @@ -29891,9 +29182,6 @@ realclean: $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ Sequence.h \ Managed_Types.h \ @@ -29919,18 +29207,30 @@ realclean: Seq_Out_T.inl \ Seq_Out_T.cpp \ Policy_ForwardC.i \ - IOP_IORC.h \ + MProfile.i \ + ORB.h \ + Exception.h \ + ServicesC.h \ OctetSeqC.h \ OctetSeqC.i \ VarOut_T.h \ VarOut_T.inl \ VarOut_T.cpp \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ + PolicyC.h \ + CurrentC.h \ + Object.h \ + IOP_IORC.h \ IOP_IORC.i \ Object.i \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -29965,14 +29265,12 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -29980,15 +29278,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -30016,15 +29305,13 @@ realclean: IOPC.i \ Service_Context.inl \ target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ target_specification.i \ operation_details.i \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -30167,7 +29454,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -30243,7 +29529,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp CurrentC.i \ @@ -30531,7 +29816,6 @@ realclean: $(ACE_ROOT)/ace/SStringfwd.h \ Exception.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -30836,7 +30120,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -30851,7 +30134,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CurrentC.i \ Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ @@ -30860,6 +30142,7 @@ realclean: DLL_ORB.inl \ TAO_Singleton_Manager.h \ TAO_Singleton_Manager.inl \ + debug.h \ $(ACE_ROOT)/ace/ARGV.h \ $(ACE_ROOT)/ace/ARGV.i \ $(ACE_ROOT)/ace/Dynamic_Service.h \ @@ -30871,114 +30154,55 @@ realclean: .obj/Adapter.o .obj/Adapter.so .shobj/Adapter.o .shobj/Adapter.so: Adapter.cpp Adapter.h \ $(ACE_ROOT)/ace/pre.h \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CDR_Base.h \ + $(ACE_ROOT)/ace/Service_Object.h \ + $(ACE_ROOT)/ace/Shared_Object.h \ + $(ACE_ROOT)/ace/ACE_export.h \ $(ACE_ROOT)/ace/post.h \ $(ACE_ROOT)/ace/ace_wchar.h \ $(ACE_ROOT)/ace/ace_wchar.inl \ - $(ACE_ROOT)/ace/Basic_Types.h \ - $(ACE_ROOT)/ace/os_include/os_limits.h \ - $(ACE_ROOT)/ace/os_include/os_unistd.h \ $(ACE_ROOT)/ace/os_include/sys/os_types.h \ $(ACE_ROOT)/ace/os_include/os_stddef.h \ + $(ACE_ROOT)/ace/Shared_Object.i \ + $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ + $(ACE_ROOT)/ace/Event_Handler.h \ + $(ACE_ROOT)/ace/os_include/os_signal.h \ + $(ACE_ROOT)/ace/os_include/os_time.h \ + $(ACE_ROOT)/ace/os_include/os_ucontext.h \ + $(ACE_ROOT)/ace/Atomic_Op.h \ + $(ACE_ROOT)/ace/Thread_Mutex.h \ + $(ACE_ROOT)/ace/OS.h \ + $(ACE_ROOT)/ace/OS_Dirent.h \ + $(ACE_ROOT)/ace/OS_Export.h \ + $(ACE_ROOT)/ace/OS_Errno.h \ + $(ACE_ROOT)/ace/os_include/os_errno.h \ + $(ACE_ROOT)/ace/OS_Errno.inl \ + $(ACE_ROOT)/ace/os_include/os_dirent.h \ + $(ACE_ROOT)/ace/os_include/os_limits.h \ + $(ACE_ROOT)/ace/os_include/os_unistd.h \ $(ACE_ROOT)/ace/os_include/os_inttypes.h \ $(ACE_ROOT)/ace/os_include/os_stdint.h \ $(ACE_ROOT)/ace/os_include/os_stdio.h \ $(ACE_ROOT)/ace/os_include/os_stdarg.h \ + $(ACE_ROOT)/ace/OS_Dirent.inl \ + $(ACE_ROOT)/ace/OS_String.h \ + $(ACE_ROOT)/ace/Basic_Types.h \ $(ACE_ROOT)/ace/os_include/os_float.h \ $(ACE_ROOT)/ace/os_include/os_stdlib.h \ $(ACE_ROOT)/ace/os_include/sys/os_wait.h \ - $(ACE_ROOT)/ace/os_include/os_signal.h \ - $(ACE_ROOT)/ace/os_include/os_time.h \ - $(ACE_ROOT)/ace/os_include/os_ucontext.h \ $(ACE_ROOT)/ace/os_include/sys/os_resource.h \ $(ACE_ROOT)/ace/os_include/sys/os_time.h \ $(ACE_ROOT)/ace/os_include/sys/os_select.h \ - $(ACE_ROOT)/ace/ACE_export.h \ $(ACE_ROOT)/ace/Basic_Types.i \ - $(ACE_ROOT)/ace/Default_Constants.h \ - $(ACE_ROOT)/ace/CDR_Base.inl \ - orbconf.h \ - $(ACE_ROOT)/ace/Global_Macros.h \ - $(ACE_ROOT)/ace/OS_Export.h \ - $(ACE_ROOT)/ace/Synch_Traits.h \ - $(ACE_ROOT)/ace/Lock.h \ - $(ACE_ROOT)/ace/Lock.inl \ - TAO_Export.h \ - corbafwd.i \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/OS_String.h \ $(ACE_ROOT)/ace/OS_String.inl \ $(ACE_ROOT)/ace/os_include/os_string.h \ $(ACE_ROOT)/ace/os_include/os_strings.h \ $(ACE_ROOT)/ace/os_include/os_ctype.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Time_Value.h \ - $(ACE_ROOT)/ace/Time_Value.inl \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ - $(ACE_ROOT)/ace/CDR_Stream.i \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ - $(ACE_ROOT)/ace/Service_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.h \ - $(ACE_ROOT)/ace/Shared_Object.i \ - $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \ - $(ACE_ROOT)/ace/Event_Handler.h \ - $(ACE_ROOT)/ace/Atomic_Op.h \ - $(ACE_ROOT)/ace/Thread_Mutex.h \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/OS_Dirent.h \ - $(ACE_ROOT)/ace/os_include/os_dirent.h \ - $(ACE_ROOT)/ace/OS_Dirent.inl \ + $(ACE_ROOT)/ace/OS_Memory.h \ + $(ACE_ROOT)/ace/OS_Memory.inl \ $(ACE_ROOT)/ace/OS_TLI.h \ $(ACE_ROOT)/ace/OS_TLI.inl \ $(ACE_ROOT)/ace/os_include/os_dlfcn.h \ + $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/os_include/os_netdb.h \ $(ACE_ROOT)/ace/os_include/netinet/os_in.h \ $(ACE_ROOT)/ace/os_include/sys/os_socket.h \ @@ -30986,6 +30210,10 @@ realclean: $(ACE_ROOT)/ace/os_include/net/os_if.h \ $(ACE_ROOT)/ace/os_include/sys/os_sem.h \ $(ACE_ROOT)/ace/os_include/sys/os_ipc.h \ + $(ACE_ROOT)/ace/Time_Value.h \ + $(ACE_ROOT)/ace/Time_Value.inl \ + $(ACE_ROOT)/ace/Default_Constants.h \ + $(ACE_ROOT)/ace/Global_Macros.h \ $(ACE_ROOT)/ace/Min_Max.h \ $(ACE_ROOT)/ace/os_include/os_pthread.h \ $(ACE_ROOT)/ace/os_include/os_assert.h \ @@ -31009,6 +30237,8 @@ realclean: $(ACE_ROOT)/ace/Atomic_Op_T.h \ $(ACE_ROOT)/ace/Atomic_Op_T.i \ $(ACE_ROOT)/ace/Guard_T.h \ + $(ACE_ROOT)/ace/Lock.h \ + $(ACE_ROOT)/ace/Lock.inl \ $(ACE_ROOT)/ace/Guard_T.inl \ $(ACE_ROOT)/ace/Guard_T.cpp \ $(ACE_ROOT)/ace/Atomic_Op_T.cpp \ @@ -31017,11 +30247,63 @@ realclean: $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ $(ACE_ROOT)/ace/Atomic_Op.i \ + $(ACE_ROOT)/ace/Synch_Traits.h \ $(ACE_ROOT)/ace/Event_Handler.i \ $(ACE_ROOT)/ace/DLL.h \ $(ACE_ROOT)/ace/Service_Object.i \ Exception.h \ + corbafwd.h \ + $(ACE_ROOT)/ace/CDR_Base.h \ + $(ACE_ROOT)/ace/CDR_Base.inl \ + orbconf.h \ + TAO_Export.h \ + corbafwd.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ Exception.i Adapter.i \ + Object.h Policy_ForwardC.h \ + Sequence.h \ + Managed_Types.h \ + Managed_Types.i \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + CDR.h \ + $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/Message_Block.h \ + $(ACE_ROOT)/ace/Message_Block.i \ + $(ACE_ROOT)/ace/Message_Block_T.h \ + $(ACE_ROOT)/ace/Message_Block_T.i \ + $(ACE_ROOT)/ace/Message_Block_T.cpp \ + $(ACE_ROOT)/ace/Malloc_Base.h \ + $(ACE_ROOT)/ace/CDR_Stream.i \ + CDR.i \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Environment.h \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ + Environment.i \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + IOP_IORC.i \ + Object.i \ $(ACE_ROOT)/ace/Dynamic_Service.h \ $(ACE_ROOT)/ace/Dynamic_Service_Base.h \ $(ACE_ROOT)/ace/Dynamic_Service.i \ @@ -31229,10 +30511,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -31242,10 +30520,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -31321,7 +30598,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -31330,6 +30606,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Callbacks.i \ @@ -31513,6 +30793,21 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -31524,30 +30819,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -31562,7 +30841,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -31602,8 +30880,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -32217,7 +31493,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -32232,7 +31507,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CurrentC.i \ Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ @@ -32425,7 +31699,14 @@ realclean: params.h objectid.h CORBA_String.h \ CORBA_String.inl \ params.i Adapter.h \ - Object.h \ + Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp OctetSeqC.i \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -32436,25 +31717,15 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -32469,13 +31740,13 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -32498,9 +31769,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -32540,7 +31810,6 @@ realclean: $(ACE_ROOT)/ace/Lock_Adapter_T.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.cpp ORB_Core.i \ Stub.h MProfile.h \ - PolicyC.h \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -32548,13 +31817,14 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ Stub.i MProfile.h \ - Connector_Registry.h Endpoint.h \ - Endpoint.i \ - Connector_Registry.i + Connector_Registry.h \ + Connector_Registry.i \ + debug.h .obj/CORBANAME_Parser.o .obj/CORBANAME_Parser.so .shobj/CORBANAME_Parser.o .shobj/CORBANAME_Parser.so: CORBANAME_Parser.cpp CORBANAME_Parser.h \ $(ACE_ROOT)/ace/pre.h \ @@ -32760,10 +32030,6 @@ realclean: VarOut_T.cpp \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -32773,10 +32039,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -32791,24 +32056,23 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Context.inl \ - target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ - target_specification.i operation_details.i Transport.h Exception.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + target_specification.h target_specification.i operation_details.i \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -32820,12 +32084,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - CurrentC.i \ - Remote_Object_Proxy_Impl.h \ - Object_Proxy_Impl.h \ - PolicyC.i \ MProfile.i \ ORB.h \ ServicesC.h \ @@ -32833,6 +32091,12 @@ realclean: ObjectIdListC.h \ ObjectIdListC.i \ objectid.h \ + PolicyC.h \ + CurrentC.h \ + CurrentC.i \ + Remote_Object_Proxy_Impl.h \ + Object_Proxy_Impl.h \ + PolicyC.i \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -33046,14 +32310,12 @@ realclean: corbafwd.h Resource_Factory.h CONV_FRAMEC.h CONV_FRAMEC.i params.h \ objectid.h CORBA_String.h \ params.i Adapter.h \ - Object.h Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ - DynamicC.h \ + Objref_VarOut_T.h DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -33067,13 +32329,13 @@ realclean: Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ - Marshal.i \ - debug.h DynamicC.i \ + Marshal.i DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -33096,9 +32358,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -33200,158 +32461,7 @@ realclean: Bind_Dispatcher_Guard.i \ Reply_Dispatcher.h \ Reply_Dispatcher.i \ - Transport_Mux_Strategy.h \ - IOPC.h \ - IOP_IORC.h \ - OctetSeqC.h \ - Seq_Var_T.h \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/OS_String.h \ - $(ACE_ROOT)/ace/OS_String.inl \ - $(ACE_ROOT)/ace/os_include/os_string.h \ - $(ACE_ROOT)/ace/os_include/os_strings.h \ - $(ACE_ROOT)/ace/os_include/os_ctype.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Time_Value.h \ - $(ACE_ROOT)/ace/Time_Value.inl \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ - $(ACE_ROOT)/ace/CDR_Stream.i \ - CDR.i \ - IOP_IORC.i \ - IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ - $(ACE_ROOT)/ace/Functor.h \ - $(ACE_ROOT)/ace/Functor.i \ - $(ACE_ROOT)/ace/ACE.h \ - $(ACE_ROOT)/ace/Flag_Manip.h \ - $(ACE_ROOT)/ace/Flag_Manip.i \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/OS_Dirent.h \ - $(ACE_ROOT)/ace/os_include/os_dirent.h \ - $(ACE_ROOT)/ace/OS_Dirent.inl \ - $(ACE_ROOT)/ace/OS_TLI.h \ - $(ACE_ROOT)/ace/OS_TLI.inl \ - $(ACE_ROOT)/ace/os_include/os_dlfcn.h \ - $(ACE_ROOT)/ace/os_include/os_netdb.h \ - $(ACE_ROOT)/ace/os_include/netinet/os_in.h \ - $(ACE_ROOT)/ace/os_include/sys/os_socket.h \ - $(ACE_ROOT)/ace/os_include/sys/os_uio.h \ - $(ACE_ROOT)/ace/os_include/net/os_if.h \ - $(ACE_ROOT)/ace/os_include/sys/os_sem.h \ - $(ACE_ROOT)/ace/os_include/sys/os_ipc.h \ - $(ACE_ROOT)/ace/Min_Max.h \ - $(ACE_ROOT)/ace/os_include/os_pthread.h \ - $(ACE_ROOT)/ace/os_include/os_assert.h \ - $(ACE_ROOT)/ace/os_include/os_fcntl.h \ - $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ - $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ - $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ - $(ACE_ROOT)/ace/os_include/os_pwd.h \ - $(ACE_ROOT)/ace/os_include/os_stropts.h \ - $(ACE_ROOT)/ace/os_include/os_termios.h \ - $(ACE_ROOT)/ace/os_include/os_aio.h \ - $(ACE_ROOT)/ace/os_include/sys/os_un.h \ - $(ACE_ROOT)/ace/os_include/os_poll.h \ - $(ACE_ROOT)/ace/os_include/sys/os_msg.h \ - $(ACE_ROOT)/ace/os_include/sys/os_utsname.h \ - $(ACE_ROOT)/ace/os_include/os_syslog.h \ - $(ACE_ROOT)/ace/OS.i \ - $(ACE_ROOT)/ace/Handle_Ops.h \ - $(ACE_ROOT)/ace/Handle_Ops.i \ - $(ACE_ROOT)/ace/Lib_Find.h \ - $(ACE_ROOT)/ace/Lib_Find.i \ - $(ACE_ROOT)/ace/Init_ACE.h \ - $(ACE_ROOT)/ace/Init_ACE.i \ - $(ACE_ROOT)/ace/Sock_Connect.h \ - $(ACE_ROOT)/ace/Sock_Connect.i \ - $(ACE_ROOT)/ace/ACE.i \ - $(ACE_ROOT)/ace/Functor_T.h \ - $(ACE_ROOT)/ace/Functor_T.i \ - $(ACE_ROOT)/ace/Functor_T.cpp \ - $(ACE_ROOT)/ace/Log_Msg.h \ - $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ - $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ - $(ACE_ROOT)/ace/Guard_T.h \ - $(ACE_ROOT)/ace/Guard_T.inl \ - $(ACE_ROOT)/ace/Guard_T.cpp \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.h \ - $(ACE_ROOT)/ace/Node.h \ - $(ACE_ROOT)/ace/Node.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.inl \ - $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ - $(ACE_ROOT)/ace/Thread_Mutex.h \ - $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ - Typecode.i \ - Any.i \ - Any_Impl_T.inl \ - Any_Impl_T.cpp \ - Marshal.h \ - Marshal.i \ - debug.h \ - $(ACE_ROOT)/ace/Auto_Ptr.h \ - $(ACE_ROOT)/ace/Auto_Ptr.i \ - $(ACE_ROOT)/ace/Auto_Ptr.cpp \ - Any_Dual_Impl_T.h \ - Any_Dual_Impl_T.inl \ - Any_Dual_Impl_T.cpp \ - CORBA_String.h \ - CORBA_String.inl \ - IOP_CodecC.i \ - IOPC.i + Transport_Mux_Strategy.h .obj/Fault_Tolerance_Service.o .obj/Fault_Tolerance_Service.so .shobj/Fault_Tolerance_Service.o .shobj/Fault_Tolerance_Service.so: Fault_Tolerance_Service.cpp \ Fault_Tolerance_Service.h \ @@ -33495,10 +32605,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -33508,10 +32614,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -33542,12 +32647,15 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ Any_Dual_Impl_T.h \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ Service_Callbacks.i \ @@ -33618,8 +32726,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -33732,9 +32838,9 @@ realclean: StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ - DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -33752,9 +32858,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -33772,8 +32875,10 @@ realclean: VarOut_T.cpp \ IOP_IORC.i \ Object.i \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -33849,7 +32954,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -34298,9 +33402,9 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -34318,9 +33422,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -34338,9 +33439,11 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -34416,7 +33519,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -34427,13 +33529,13 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ - PolicyC.i PortableInterceptorC.i LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i ORBInitInfo.inl ORB_Core.h \ - Resource_Factory.h \ + PolicyC.i PortableInterceptorC.i LocalObject.h LocalObject.i \ + ORBInitInfo.inl ORB_Core.h Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ @@ -34520,7 +33622,7 @@ realclean: $(ACE_ROOT)/ace/Lock_Adapter_T.cpp ORB_Core.i \ ORB.h Exception.h ServicesC.h ServicesC.i ObjectIdListC.h \ ObjectIdListC.i ORB.i \ - CodecFactory.h + CodecFactory.h IOP_CodecC.h .obj/ORBInitializer_Registry.o .obj/ORBInitializer_Registry.so .shobj/ORBInitializer_Registry.o .shobj/ORBInitializer_Registry.so: ORBInitializer_Registry.cpp \ ORBInitializer_Registry.h $(ACE_ROOT)/ace/pre.h \ @@ -34580,9 +33682,9 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -34600,9 +33702,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -34620,9 +33719,11 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -34698,7 +33799,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -34709,6 +33809,7 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -34843,9 +33944,9 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -34863,9 +33964,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -34883,9 +33981,11 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -34961,7 +34061,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -34972,6 +34071,7 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -35026,12 +34126,6 @@ realclean: $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ Transport.h \ - Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ Transport_Cache_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ @@ -35071,6 +34165,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -35131,6 +34226,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -35141,6 +34238,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -35368,11 +34466,6 @@ realclean: $(ACE_ROOT)/ace/Null_Mutex.h \ Transport_Cache_Manager.inl \ Transport.h \ - Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - Exception.i \ Transport_Timer.h \ $(ACE_ROOT)/ace/Event_Handler.h \ $(ACE_ROOT)/ace/Atomic_Op.h \ @@ -35394,6 +34487,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -35404,6 +34499,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -35449,6 +34545,15 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -35462,18 +34567,10 @@ realclean: Environment.i \ Policy_ForwardC.i \ Object.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ @@ -35520,8 +34617,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -35896,7 +34991,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Unbounded_Queue.h \ $(ACE_ROOT)/ace/Node.h \ $(ACE_ROOT)/ace/Node.cpp \ @@ -35909,7 +35003,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp CurrentC.i \ @@ -36038,7 +35131,7 @@ realclean: $(ACE_ROOT)/ace/pre.h TAO_Export.h \ $(ACE_ROOT)/ace/post.h \ $(ACE_ROOT)/ace/ace_wchar.h \ - $(ACE_ROOT)/ace/ace_wchar.inl IOPC.h \ + $(ACE_ROOT)/ace/ace_wchar.inl IOP_CodecC.h \ corbafwd.h \ $(ACE_ROOT)/ace/CDR_Base.h \ $(ACE_ROOT)/ace/Basic_Types.h \ @@ -36071,35 +35164,26 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - IOP_IORC.h \ - OctetSeqC.h \ - Seq_Var_T.h \ + Objref_VarOut_T.h \ + varbase.h \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Environment.h \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ + Environment.i \ + Any_Impl_T.h \ + Any.h \ + $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_Memory.h \ $(ACE_ROOT)/ace/OS_Errno.h \ $(ACE_ROOT)/ace/os_include/os_errno.h \ $(ACE_ROOT)/ace/OS_Errno.inl \ $(ACE_ROOT)/ace/OS_Memory.inl \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ $(ACE_ROOT)/ace/OS_String.inl \ $(ACE_ROOT)/ace/os_include/os_string.h \ @@ -36115,26 +35199,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - CDR.i \ - IOP_IORC.i \ - IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -36210,7 +35275,8 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ + CDR.h \ + CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -36218,10 +35284,32 @@ realclean: Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ CORBA_String.h \ + Managed_Types.h \ + Managed_Types.i \ CORBA_String.inl \ - IOP_CodecC.i IOPC.i \ - LocalObject.h Object.h Object_KeyC.h Object_KeyC.i LocalObject.i \ - CDR_Encaps_Codec.h + Object.h \ + Policy_ForwardC.h \ + Sequence.h \ + Sequence.i \ + Sequence_T.h \ + Sequence_T.i \ + Sequence_T.cpp \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + OctetSeqC.h \ + OctetSeqC.i \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + IOP_IORC.i \ + Object.i IOP_CodecC.i \ + LocalObject.h Object.h LocalObject.i CDR_Encaps_Codec.h .obj/CodecFactory_ORBInitializer.o .obj/CodecFactory_ORBInitializer.so .shobj/CodecFactory_ORBInitializer.o .shobj/CodecFactory_ORBInitializer.so: CodecFactory_ORBInitializer.cpp \ CodecFactory_ORBInitializer.h \ @@ -36282,9 +35370,9 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i DynamicC.h \ - Any_Dual_Impl_T.h \ - Any.h \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Policy_ForwardC.h \ + CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -36302,9 +35390,6 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - CDR.h \ CDR.i \ Objref_VarOut_T.h \ varbase.h \ @@ -36322,9 +35407,11 @@ realclean: VarOut_T.inl \ VarOut_T.cpp \ IOP_IORC.i \ - Object.i \ + Object.i Objref_VarOut_T.h \ + DynamicC.h \ + Any_Dual_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -36400,7 +35487,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -36411,13 +35497,13 @@ realclean: Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ - PolicyC.i PortableInterceptorC.i LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i CodecFactory.h ORBInitInfo.h corbafwd.h \ - ORBInitInfo.inl + PolicyC.i PortableInterceptorC.i LocalObject.h LocalObject.i \ + CodecFactory.h IOP_CodecC.h ORBInitInfo.h corbafwd.h ORBInitInfo.inl .obj/CDR_Encaps_Codec.o .obj/CDR_Encaps_Codec.so .shobj/CDR_Encaps_Codec.o .shobj/CDR_Encaps_Codec.so: CDR_Encaps_Codec.cpp CDR.h \ $(ACE_ROOT)/ace/pre.h \ @@ -36494,28 +35580,7 @@ realclean: Sequence_T.h \ Sequence_T.i \ Sequence_T.cpp OctetSeqC.i \ - Any.h Object.h \ - Policy_ForwardC.h \ - CDR.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + Any.h Typecode.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -36585,17 +35650,25 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i Typecode.h Marshal.h \ Marshal.i \ - CDR_Encaps_Codec.h TAO_Export.h IOPC.h \ - IOP_CodecC.h \ + CDR_Encaps_Codec.h TAO_Export.h IOP_CodecC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Environment.h \ + Environment.i \ Any_Impl_T.h \ Any.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ - debug.h \ + CDR.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -36604,8 +35677,17 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ - IOP_CodecC.i IOPC.i \ - LocalObject.h Object.h Object_KeyC.h Object_KeyC.i LocalObject.i + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + IOP_IORC.h \ + OctetSeqC.h \ + VarOut_T.h \ + VarOut_T.inl \ + VarOut_T.cpp \ + IOP_IORC.i \ + Object.i IOP_CodecC.i \ + LocalObject.h Object.h LocalObject.i .obj/Endpoint_Selector_Factory.o .obj/Endpoint_Selector_Factory.so .shobj/Endpoint_Selector_Factory.o .shobj/Endpoint_Selector_Factory.so: Endpoint_Selector_Factory.cpp \ Endpoint_Selector_Factory.h \ @@ -36762,18 +35844,12 @@ realclean: $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -36815,6 +35891,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -36874,6 +35951,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -36884,6 +35963,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -36936,18 +36016,12 @@ realclean: $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -36989,6 +36063,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -37048,6 +36123,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -37058,6 +36135,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -37094,7 +36172,10 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -37106,28 +36187,24 @@ realclean: Pseudo_VarOut_T.cpp \ Environment.i \ Policy_ForwardC.i \ - Object.i \ - Exception.h Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -37150,9 +36227,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -37500,17 +36576,12 @@ realclean: $(ACE_ROOT)/ace/CDR_Base.inl \ orbconf.h \ TAO_Export.h \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -37549,6 +36620,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -37559,6 +36632,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -37595,7 +36669,10 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -37607,28 +36684,24 @@ realclean: Pseudo_VarOut_T.cpp \ Environment.i \ Policy_ForwardC.i \ - Object.i \ - Exception.h Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -37651,9 +36724,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -37799,17 +36871,12 @@ realclean: $(ACE_ROOT)/ace/CDR_Base.inl \ orbconf.h \ TAO_Export.h \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -37848,6 +36915,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -37858,6 +36927,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -37894,7 +36964,10 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -37906,28 +36979,24 @@ realclean: Pseudo_VarOut_T.cpp \ Environment.i \ Policy_ForwardC.i \ - Object.i \ - Exception.h Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -37950,9 +37019,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -38448,17 +37516,12 @@ realclean: $(ACE_ROOT)/ace/CDR_Base.inl \ orbconf.h \ TAO_Export.h \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -38497,6 +37560,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -38507,6 +37572,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -38566,18 +37632,12 @@ realclean: $(ACE_ROOT)/ace/Synch_Traits.h \ $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ - corbafwd.i Exception.h \ - corbafwd.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ + corbafwd.i \ Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + corbafwd.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -38619,6 +37679,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -38678,6 +37739,8 @@ realclean: Sequence.h \ Managed_Types.h \ Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Sequence.i \ Sequence_T.h \ Sequence_T.i \ @@ -38688,6 +37751,7 @@ realclean: VarOut_T.cpp \ CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -38801,7 +37865,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -38877,7 +37940,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -38885,7 +37947,8 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - Policy_Set.i + Policy_Set.i \ + debug.h .obj/Default_Endpoint_Selector_Factory.o .obj/Default_Endpoint_Selector_Factory.so .shobj/Default_Endpoint_Selector_Factory.o .shobj/Default_Endpoint_Selector_Factory.so: \ Default_Endpoint_Selector_Factory.cpp \ @@ -39219,6 +38282,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -39230,32 +38310,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -39270,7 +38332,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -39312,8 +38373,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -39397,8 +38456,6 @@ realclean: Incoming_Message_Queue.inl \ Transport.inl \ Connector_Registry.h \ - Endpoint.h \ - Endpoint.i \ Connector_Registry.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -39590,6 +38647,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -39601,32 +38675,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -39641,7 +38697,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -39683,8 +38738,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -39948,6 +39001,21 @@ realclean: CORBA_String.inl \ params.i \ Adapter.h \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -39959,30 +39027,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -39997,7 +39049,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -40038,8 +39089,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -40250,9 +39299,6 @@ realclean: MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ Sequence.h \ Managed_Types.h \ @@ -40286,18 +39332,31 @@ realclean: Seq_Out_T.inl \ Seq_Out_T.cpp \ Policy_ForwardC.i \ - IOP_IORC.h \ + MProfile.i \ + ORB.h \ + Exception.h \ + Exception.i \ + ServicesC.h \ OctetSeqC.h \ OctetSeqC.i \ VarOut_T.h \ VarOut_T.inl \ VarOut_T.cpp \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ + PolicyC.h \ + CurrentC.h \ + Object.h \ + IOP_IORC.h \ IOP_IORC.i \ Object.i \ Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -40306,28 +39365,16 @@ realclean: $(ACE_ROOT)/ace/Functor_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - Exception.h \ - Exception.i \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CurrentC.i \ Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -40420,10 +39467,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -40433,10 +39476,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -40512,7 +39554,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -40521,6 +39562,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i TAO_Server_Request.h \ corbafwd.h $(ACE_ROOT)/ace/SString.h \ @@ -40539,13 +39584,12 @@ realclean: $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ PortableInterceptorC.h PI_ForwardC.h StringSeqC.h Sequence.h \ - StringSeqC.i PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + StringSeqC.i PI_ForwardC.i Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + CurrentC.h CurrentC.i Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ - PolicyC.i PortableInterceptorC.i LocalObject.h Object_KeyC.h \ - LocalObject.i PICurrent.inl TAO_Server_Request.i ORB_Core.h \ - Resource_Factory.h \ + PolicyC.i PortableInterceptorC.i LocalObject.h LocalObject.i \ + PICurrent.inl TAO_Server_Request.i ORB_Core.h Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ @@ -40904,7 +39948,16 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i Adapter.h \ - Object.h \ + Exception.h \ + Exception.i Adapter.i \ + PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ + OctetSeqC.h Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp OctetSeqC.i \ + StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -40915,27 +39968,15 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ - Object.i \ - Exception.h \ - Exception.i Adapter.i \ - PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ + Object.i Objref_VarOut_T.h \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ @@ -40945,13 +39986,13 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h DynamicC.i \ Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h \ IOP_CodecC.h \ Any_Impl_T.h \ Any_Impl_T.inl \ Any_Impl_T.cpp \ + Object.h \ IOP_CodecC.i IOPC.i \ PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ Remote_Object_Proxy_Impl.h \ @@ -40971,9 +40012,8 @@ realclean: $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ Cleanup_Func_Registry.inl Object_Ref_Table.h Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - Object_KeyC.i LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -41017,7 +40057,8 @@ realclean: $(ACE_ROOT)/ace/Lock_Adapter_T.cpp ORB_Core.i \ Refcounted_ObjectKey.h \ Object_KeyC.h \ - Refcounted_ObjectKey.inl + Object_KeyC.i \ + Refcounted_ObjectKey.inl Object_KeyC.h .obj/Refcounted_ObjectKey.o .obj/Refcounted_ObjectKey.so .shobj/Refcounted_ObjectKey.o .shobj/Refcounted_ObjectKey.so: Refcounted_ObjectKey.cpp Refcounted_ObjectKey.h \ $(ACE_ROOT)/ace/pre.h \ @@ -41293,7 +40334,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -41327,7 +40367,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -41337,9 +40376,8 @@ realclean: PolicyC.i \ Policy_Set.i \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ + debug.h \ Policy_Manager.i .obj/ServicesC.o .obj/ServicesC.so .shobj/ServicesC.o .shobj/ServicesC.so: ServicesC.cpp ServicesC.h \ @@ -41425,23 +40463,7 @@ realclean: VarOut_T.cpp ServicesC.i \ Any_Dual_Impl_T.h \ Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - IOP_IORC.h \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -41511,15 +40533,19 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ Any_Dual_Impl_T.inl \ Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ CORBA_String.h \ CORBA_String.inl \ + Environment.h \ + Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -41560,6 +40586,16 @@ realclean: StringSeqC.h \ StringSeqC.i \ PI_ForwardC.i \ + Object.h \ + Policy_ForwardC.h \ + Objref_VarOut_T.h \ + varbase.h \ + Objref_VarOut_T.inl \ + Objref_VarOut_T.cpp \ + Policy_ForwardC.i \ + IOP_IORC.h \ + IOP_IORC.i \ + Object.i \ DynamicC.h \ DynamicC.i \ Messaging_SyncScopeC.h \ @@ -41602,8 +40638,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -41707,48 +40741,7 @@ realclean: $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - Object.h \ - Policy_ForwardC.h \ - Sequence.h \ - corbafwd.h \ - TAO_Export.h \ - corbafwd.i \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.h \ - Sequence_T.i \ - Sequence_T.cpp \ - CDR.h \ - CDR.i \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Policy_ForwardC.i \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - IOP_IORC.i \ - Object.i \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -41817,11 +40810,23 @@ realclean: $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ Exception.h \ + corbafwd.h \ + TAO_Export.h \ + corbafwd.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ Exception.i \ + Pseudo_VarOut_T.h \ + Pseudo_VarOut_T.inl \ + Pseudo_VarOut_T.cpp \ Typecode.i \ Any.i \ NVList.i \ + Environment.h \ + Environment.i \ BoundsC.h \ + CDR.h \ + CDR.i \ BoundsC.i \ debug.h \ Marshal.h \ @@ -41998,6 +41003,23 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + OctetSeqC.h \ + Seq_Var_T.h \ + Seq_Var_T.inl \ + Seq_Var_T.cpp \ + Seq_Out_T.h \ + Seq_Out_T.inl \ + Seq_Out_T.cpp \ + OctetSeqC.i \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -42009,32 +41031,14 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Seq_Var_T.h \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ Policy_ForwardC.i \ IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ IOP_IORC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -42049,7 +41053,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -42091,8 +41094,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -42246,7 +41247,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -42322,7 +41322,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -42332,9 +41331,8 @@ realclean: PolicyC.i \ Policy_Set.i \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ + debug.h \ Policy_Manager.i \ TSS_Resources.h \ TAO_Singleton_Manager.h \ @@ -42517,7 +41515,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -42593,7 +41590,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -42612,8 +41608,6 @@ realclean: TimeBaseC.i \ TAOC.i \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ Buffering_Constraint_Policy.i @@ -42698,9 +41692,6 @@ realclean: $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ CDR.i IOP_IORC.i \ - PolicyC.h \ - CurrentC.h \ - Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ @@ -42712,18 +41703,10 @@ realclean: Pseudo_VarOut_T.cpp \ Environment.i \ Policy_ForwardC.i \ - IOP_IORC.h \ - Object.i \ - Any_Impl_T.h \ - Any.h \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ - $(ACE_ROOT)/ace/Functor.h \ - $(ACE_ROOT)/ace/Functor.i \ - $(ACE_ROOT)/ace/ACE.h \ - $(ACE_ROOT)/ace/Flag_Manip.h \ - $(ACE_ROOT)/ace/Flag_Manip.i \ + Messaging_PolicyValueC.i \ + Stub.h \ + MProfile.h \ + $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/OS.h \ $(ACE_ROOT)/ace/OS_Dirent.h \ $(ACE_ROOT)/ace/os_include/os_dirent.h \ @@ -42757,6 +41740,32 @@ realclean: $(ACE_ROOT)/ace/os_include/sys/os_utsname.h \ $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ + $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ + MProfile.i \ + ORB.h \ + Exception.h \ + Exception.i \ + ServicesC.h \ + ServicesC.i \ + CORBA_String.h \ + CORBA_String.inl \ + ObjectIdListC.h \ + ObjectIdListC.i \ + objectid.h \ + PolicyC.h \ + CurrentC.h \ + Object.h \ + IOP_IORC.h \ + Object.i \ + Any_Impl_T.h \ + Any.h \ + Typecode.h \ + $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ + $(ACE_ROOT)/ace/Functor.h \ + $(ACE_ROOT)/ace/Functor.i \ + $(ACE_ROOT)/ace/ACE.h \ + $(ACE_ROOT)/ace/Flag_Manip.h \ + $(ACE_ROOT)/ace/Flag_Manip.i \ $(ACE_ROOT)/ace/Handle_Ops.h \ $(ACE_ROOT)/ace/Handle_Ops.i \ $(ACE_ROOT)/ace/Lib_Find.h \ @@ -42785,15 +41794,12 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ Typecode.i \ Any.i \ Any_Impl_T.inl \ Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -42801,20 +41807,6 @@ realclean: Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i \ - Messaging_PolicyValueC.i \ - Stub.h \ - MProfile.h \ - $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ - $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - MProfile.i \ - ORB.h \ - ServicesC.h \ - ServicesC.i \ - CORBA_String.h \ - CORBA_String.inl \ - ObjectIdListC.h \ - ObjectIdListC.i \ - objectid.h \ ORB.i \ ORB_Core_Auto_Ptr.h \ ORB_Core_Auto_Ptr.inl \ @@ -42891,8 +41883,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -43207,6 +42197,15 @@ realclean: $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ params.i \ Adapter.h \ + Exception.h \ + Exception.i \ + Adapter.i \ + PolicyFactory_Registry.h \ + PortableInterceptorC.h \ + PI_ForwardC.h \ + StringSeqC.h \ + StringSeqC.i \ + PI_ForwardC.i \ Object.h \ Policy_ForwardC.h \ Objref_VarOut_T.h \ @@ -43220,20 +42219,10 @@ realclean: Environment.i \ Policy_ForwardC.i \ Object.i \ - Exception.h \ - Exception.i \ - Adapter.i \ - PolicyFactory_Registry.h \ - PortableInterceptorC.h \ - PI_ForwardC.h \ - StringSeqC.h \ - StringSeqC.i \ - PI_ForwardC.i \ DynamicC.h \ Any_Dual_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -43248,7 +42237,6 @@ realclean: Any_Dual_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ DynamicC.i \ Messaging_SyncScopeC.h \ Messaging_SyncScopeC.i \ @@ -43290,8 +42278,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -43464,7 +42450,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -43537,7 +42522,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -43549,11 +42533,8 @@ realclean: IOP_CodecC.i \ IOPC.i \ Service_Context.inl \ - target_specification.h \ - Object_KeyC.h \ - Object_KeyC.i \ - target_specification.i operation_details.i GIOP_Utils.h debug.h \ - ORB_Core.h Resource_Factory.h \ + target_specification.h target_specification.i operation_details.i \ + GIOP_Utils.h debug.h ORB_Core.h Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ @@ -43579,9 +42560,9 @@ realclean: CORBA_String.h params.i \ Adapter.h Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h \ PI_ForwardC.h OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i \ - PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + PI_ForwardC.i Object.h Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + CurrentC.h CurrentC.i Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i PortableInterceptorC.i \ $(ACE_ROOT)/ace/Map_Manager.h \ @@ -43601,9 +42582,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ @@ -43663,15 +42643,16 @@ realclean: TAO_Server_Request.h Tagged_Profile.h \ GIOPC.h \ GIOPC.i \ + Object_KeyC.h \ + Object_KeyC.i \ Tagged_Profile.i \ TAO_Server_Request.i GIOP_Message_Locate_Header.h \ Tagged_Profile.h \ GIOP_Message_Locate_Header.i \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -43800,7 +42781,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -43958,8 +42938,6 @@ realclean: Interceptor_List.inl \ PICurrent.h \ LocalObject.h \ - Object_KeyC.h \ - Object_KeyC.i \ LocalObject.i \ PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -44015,6 +42993,8 @@ realclean: Tagged_Profile.h \ GIOPC.h \ GIOPC.i \ + Object_KeyC.h \ + Object_KeyC.i \ Tagged_Profile.i \ TAO_Server_Request.i \ GIOP_Message_Locate_Header.h \ @@ -44036,10 +43016,10 @@ realclean: LF_Strategy.h \ LF_Strategy.inl \ Transport.h \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ Transport_Cache_Manager.h \ Cache_Entries.h \ + Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -44162,7 +43142,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -44235,7 +43214,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -44255,7 +43233,8 @@ realclean: $(ACE_ROOT)/ace/String_Base.i \ $(ACE_ROOT)/ace/String_Base.cpp \ $(ACE_ROOT)/ace/SString.i \ - Tagged_Profile.i + Tagged_Profile.i \ + debug.h .obj/GIOP_Message_Generator_Parser_10.o .obj/GIOP_Message_Generator_Parser_10.so .shobj/GIOP_Message_Generator_Parser_10.o .shobj/GIOP_Message_Generator_Parser_10.so: GIOP_Message_Generator_Parser_10.cpp \ GIOP_Message_Generator_Parser_10.h \ @@ -44368,7 +43347,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -44441,7 +43419,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -44474,12 +43451,12 @@ realclean: $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ PortableInterceptorC.h PI_ForwardC.h StringSeqC.h Sequence.h \ - StringSeqC.i PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + StringSeqC.i PI_ForwardC.i Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + CurrentC.h CurrentC.i Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ - PolicyC.i PortableInterceptorC.i LocalObject.h Object_KeyC.h \ - LocalObject.i PICurrent.inl TAO_Server_Request.i GIOP_Message_State.h \ + PolicyC.i PortableInterceptorC.i LocalObject.h LocalObject.i \ + PICurrent.inl TAO_Server_Request.i GIOP_Message_State.h \ GIOP_Message_Version.h \ GIOP_Message_Version.inl \ GIOP_Message_State.inl \ @@ -44650,7 +43627,6 @@ realclean: Any_Impl_T.h \ Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -44723,7 +43699,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -44756,13 +43731,13 @@ realclean: $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ PortableInterceptorC.h PI_ForwardC.h StringSeqC.h Sequence.h \ - StringSeqC.i PI_ForwardC.i DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ - Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ - Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ + StringSeqC.i PI_ForwardC.i Objref_VarOut_T.h DynamicC.h DynamicC.i \ + Messaging_SyncScopeC.h Messaging_SyncScopeC.i IOPC.h PolicyC.h \ + CurrentC.h CurrentC.i Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ - PolicyC.i PortableInterceptorC.i LocalObject.h Object_KeyC.h \ - LocalObject.i PICurrent.inl TAO_Server_Request.i TAOC.h TimeBaseC.h \ - TimeBaseC.i VarOut_T.h TAOC.i ORB_Core.h Resource_Factory.h \ + PolicyC.i PortableInterceptorC.i LocalObject.h LocalObject.i \ + PICurrent.inl TAO_Server_Request.i TAOC.h TimeBaseC.h TimeBaseC.i \ + VarOut_T.h TAOC.i ORB_Core.h Resource_Factory.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ @@ -44839,11 +43814,10 @@ realclean: $(ACE_ROOT)/ace/Lock_Adapter_T.h \ $(ACE_ROOT)/ace/Lock_Adapter_T.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.cpp ORB_Core.i \ - Transport.h Exception.h Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + Transport.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -45005,13 +43979,10 @@ realclean: Object.i \ GIOP_Utils.i \ debug.h Transport.h \ - corbafwd.h Exception.h $(ACE_ROOT)/ace/iosfwd.h \ - Exception.i \ - Transport_Descriptor_Interface.h \ - Transport_Descriptor_Interface.inl \ - Transport_Cache_Manager.h \ + corbafwd.h Transport_Cache_Manager.h \ Cache_Entries.h \ Transport_Descriptor_Interface.h \ + Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ Cache_Entries.inl \ @@ -45040,6 +44011,7 @@ realclean: $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -45177,10 +44149,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -45190,10 +44158,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -45269,7 +44236,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -45278,6 +44244,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ GIOPC.h \ @@ -45296,7 +44266,6 @@ realclean: .obj/target_specification.o .obj/target_specification.so .shobj/target_specification.o .shobj/target_specification.so: target_specification.cpp \ target_specification.h \ $(ACE_ROOT)/ace/pre.h \ - Object_KeyC.h \ corbafwd.h \ $(ACE_ROOT)/ace/CDR_Base.h \ $(ACE_ROOT)/ace/post.h \ @@ -45332,158 +44301,6 @@ realclean: $(ACE_ROOT)/ace/Lock.inl \ TAO_Export.h \ corbafwd.i \ - Seq_Var_T.h \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - Seq_Var_T.inl \ - Seq_Var_T.cpp \ - Seq_Out_T.h \ - Seq_Out_T.inl \ - Seq_Out_T.cpp \ - Sequence_T.h \ - Sequence.h \ - Managed_Types.h \ - Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - Sequence.i \ - Sequence_T.i \ - Sequence_T.cpp \ - Object_KeyC.i \ - IOPC.h \ - IOP_IORC.h \ - OctetSeqC.h \ - OctetSeqC.i \ - VarOut_T.h \ - VarOut_T.inl \ - VarOut_T.cpp \ - CDR.h \ - $(ACE_ROOT)/ace/CDR_Stream.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/OS_String.h \ - $(ACE_ROOT)/ace/OS_String.inl \ - $(ACE_ROOT)/ace/os_include/os_string.h \ - $(ACE_ROOT)/ace/os_include/os_strings.h \ - $(ACE_ROOT)/ace/os_include/os_ctype.h \ - $(ACE_ROOT)/ace/Message_Block.h \ - $(ACE_ROOT)/ace/Time_Value.h \ - $(ACE_ROOT)/ace/Time_Value.inl \ - $(ACE_ROOT)/ace/Message_Block.i \ - $(ACE_ROOT)/ace/Message_Block_T.h \ - $(ACE_ROOT)/ace/Message_Block_T.i \ - $(ACE_ROOT)/ace/Message_Block_T.cpp \ - $(ACE_ROOT)/ace/Malloc_Base.h \ - $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ - $(ACE_ROOT)/ace/CDR_Stream.i \ - CDR.i \ - IOP_IORC.i \ - IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ - Objref_VarOut_T.h \ - varbase.h \ - Objref_VarOut_T.inl \ - Objref_VarOut_T.cpp \ - Environment.h \ - Pseudo_VarOut_T.h \ - Pseudo_VarOut_T.inl \ - Pseudo_VarOut_T.cpp \ - Environment.i \ - Policy_ForwardC.i \ - Object.i \ - Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ - $(ACE_ROOT)/ace/Functor.h \ - $(ACE_ROOT)/ace/Functor.i \ - $(ACE_ROOT)/ace/ACE.h \ - $(ACE_ROOT)/ace/Flag_Manip.h \ - $(ACE_ROOT)/ace/Flag_Manip.i \ - $(ACE_ROOT)/ace/OS.h \ - $(ACE_ROOT)/ace/OS_Dirent.h \ - $(ACE_ROOT)/ace/os_include/os_dirent.h \ - $(ACE_ROOT)/ace/OS_Dirent.inl \ - $(ACE_ROOT)/ace/OS_TLI.h \ - $(ACE_ROOT)/ace/OS_TLI.inl \ - $(ACE_ROOT)/ace/os_include/os_dlfcn.h \ - $(ACE_ROOT)/ace/os_include/os_netdb.h \ - $(ACE_ROOT)/ace/os_include/netinet/os_in.h \ - $(ACE_ROOT)/ace/os_include/sys/os_socket.h \ - $(ACE_ROOT)/ace/os_include/sys/os_uio.h \ - $(ACE_ROOT)/ace/os_include/net/os_if.h \ - $(ACE_ROOT)/ace/os_include/sys/os_sem.h \ - $(ACE_ROOT)/ace/os_include/sys/os_ipc.h \ - $(ACE_ROOT)/ace/Min_Max.h \ - $(ACE_ROOT)/ace/os_include/os_pthread.h \ - $(ACE_ROOT)/ace/os_include/os_assert.h \ - $(ACE_ROOT)/ace/os_include/os_fcntl.h \ - $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ - $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ - $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ - $(ACE_ROOT)/ace/os_include/os_pwd.h \ - $(ACE_ROOT)/ace/os_include/os_stropts.h \ - $(ACE_ROOT)/ace/os_include/os_termios.h \ - $(ACE_ROOT)/ace/os_include/os_aio.h \ - $(ACE_ROOT)/ace/os_include/sys/os_un.h \ - $(ACE_ROOT)/ace/os_include/os_poll.h \ - $(ACE_ROOT)/ace/os_include/sys/os_msg.h \ - $(ACE_ROOT)/ace/os_include/sys/os_utsname.h \ - $(ACE_ROOT)/ace/os_include/os_syslog.h \ - $(ACE_ROOT)/ace/OS.i \ - $(ACE_ROOT)/ace/Handle_Ops.h \ - $(ACE_ROOT)/ace/Handle_Ops.i \ - $(ACE_ROOT)/ace/Lib_Find.h \ - $(ACE_ROOT)/ace/Lib_Find.i \ - $(ACE_ROOT)/ace/Init_ACE.h \ - $(ACE_ROOT)/ace/Init_ACE.i \ - $(ACE_ROOT)/ace/Sock_Connect.h \ - $(ACE_ROOT)/ace/Sock_Connect.i \ - $(ACE_ROOT)/ace/ACE.i \ - $(ACE_ROOT)/ace/Functor_T.h \ - $(ACE_ROOT)/ace/Functor_T.i \ - $(ACE_ROOT)/ace/Functor_T.cpp \ - $(ACE_ROOT)/ace/Log_Msg.h \ - $(ACE_ROOT)/ace/Log_Priority.h \ - $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.h \ - $(ACE_ROOT)/ace/OS_Log_Msg_Attributes.inl \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ - $(ACE_ROOT)/ace/Guard_T.h \ - $(ACE_ROOT)/ace/Guard_T.inl \ - $(ACE_ROOT)/ace/Guard_T.cpp \ - $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.h \ - $(ACE_ROOT)/ace/Node.h \ - $(ACE_ROOT)/ace/Node.cpp \ - $(ACE_ROOT)/ace/Unbounded_Queue.inl \ - $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ - $(ACE_ROOT)/ace/Thread_Mutex.h \ - $(ACE_ROOT)/ace/Thread_Mutex.inl \ - Exception.h \ - Exception.i \ - Typecode.i \ - Any.i \ - Any_Impl_T.inl \ - Any_Impl_T.cpp \ - Marshal.h \ - Marshal.i \ - debug.h \ - $(ACE_ROOT)/ace/Auto_Ptr.h \ - $(ACE_ROOT)/ace/Auto_Ptr.i \ - $(ACE_ROOT)/ace/Auto_Ptr.cpp \ - Any_Dual_Impl_T.h \ - Any_Dual_Impl_T.inl \ - Any_Dual_Impl_T.cpp \ - CORBA_String.h \ - CORBA_String.inl \ - IOP_CodecC.i \ - IOPC.i \ target_specification.i .obj/GIOP_Message_State.o .obj/GIOP_Message_State.so .shobj/GIOP_Message_State.o .shobj/GIOP_Message_State.so: GIOP_Message_State.cpp \ @@ -45737,10 +44554,6 @@ realclean: CDR.i \ IOP_IORC.i \ IOP_CodecC.h \ - Any_Impl_T.h \ - Any.h \ - Object.h \ - Policy_ForwardC.h \ Objref_VarOut_T.h \ varbase.h \ Objref_VarOut_T.inl \ @@ -45750,10 +44563,9 @@ realclean: Pseudo_VarOut_T.inl \ Pseudo_VarOut_T.cpp \ Environment.i \ - Policy_ForwardC.i \ - Object.i \ + Any_Impl_T.h \ + Any.h \ Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -45829,7 +44641,6 @@ realclean: Any_Impl_T.cpp \ Marshal.h \ Marshal.i \ - debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -45838,6 +44649,10 @@ realclean: Any_Dual_Impl_T.cpp \ CORBA_String.h \ CORBA_String.inl \ + Object.h \ + Policy_ForwardC.h \ + Policy_ForwardC.i \ + Object.i \ IOP_CodecC.i \ IOPC.i \ GIOPC.h \ @@ -45871,10 +44686,10 @@ realclean: CONV_FRAMEC.i params.h objectid.h CORBA_String.h \ params.i Adapter.h \ Adapter.i PolicyFactory_Registry.h PortableInterceptorC.h PI_ForwardC.h \ - OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i \ - DynamicC.h DynamicC.i Messaging_SyncScopeC.h Messaging_SyncScopeC.i \ - IOPC.h PolicyC.h CurrentC.h CurrentC.i Policy_ForwardC.h \ - Remote_Object_Proxy_Impl.h \ + OctetSeqC.h StringSeqC.h Sequence.h StringSeqC.i PI_ForwardC.i Object.h \ + Objref_VarOut_T.h DynamicC.h DynamicC.i Messaging_SyncScopeC.h \ + Messaging_SyncScopeC.i IOPC.h PolicyC.h CurrentC.h CurrentC.i \ + Policy_ForwardC.h Remote_Object_Proxy_Impl.h \ Object_Proxy_Impl.h \ PolicyC.i PortableInterceptorC.i \ $(ACE_ROOT)/ace/Map_Manager.h \ @@ -45894,9 +44709,8 @@ realclean: $(ACE_ROOT)/ace/RB_Tree.h \ $(ACE_ROOT)/ace/RB_Tree.i \ $(ACE_ROOT)/ace/RB_Tree.cpp Interceptor_List.h \ - Interceptor_List.inl PICurrent.h LocalObject.h Object.h Object_KeyC.h \ - LocalObject.i PICurrent.inl \ - $(ACE_ROOT)/ace/Thread_Manager.h \ + Interceptor_List.inl PICurrent.h LocalObject.h LocalObject.i \ + PICurrent.inl $(ACE_ROOT)/ace/Thread_Manager.h \ $(ACE_ROOT)/ace/Thread.h \ $(ACE_ROOT)/ace/Thread_Adapter.h \ $(ACE_ROOT)/ace/Base_Thread_Adapter.h \ diff --git a/TAO/tao/Messaging/Makefile b/TAO/tao/Messaging/Makefile index 836f646a2f9..f62ba60d72e 100644 --- a/TAO/tao/Messaging/Makefile +++ b/TAO/tao/Messaging/Makefile @@ -179,7 +179,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -255,7 +254,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -348,10 +346,10 @@ endif $(ACE_ROOT)/ace/Event_Handler.i \ $(TAO_ROOT)/tao/Asynch_Reply_Dispatcher_Base.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -383,8 +381,6 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Invocation.i \ @@ -403,6 +399,8 @@ endif $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ $(TAO_ROOT)/tao/Stub.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Transport_Mux_Strategy.h .obj/Asynch_Reply_Dispatcher.o .obj/Asynch_Reply_Dispatcher.so .shobj/Asynch_Reply_Dispatcher.o .shobj/Asynch_Reply_Dispatcher.so: Asynch_Reply_Dispatcher.cpp \ @@ -508,7 +506,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -584,7 +581,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -677,10 +673,10 @@ endif $(ACE_ROOT)/ace/Event_Handler.i \ $(TAO_ROOT)/tao/Asynch_Reply_Dispatcher_Base.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -755,8 +751,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -785,7 +779,8 @@ endif $(ACE_ROOT)/ace/Framework_Component_T.inl \ $(ACE_ROOT)/ace/Framework_Component_T.cpp \ $(ACE_ROOT)/ace/Thread_Manager.i \ - $(TAO_ROOT)/tao/ORB_Core.i + $(TAO_ROOT)/tao/ORB_Core.i \ + $(TAO_ROOT)/tao/debug.h .obj/Asynch_Timeout_Handler.o .obj/Asynch_Timeout_Handler.so .shobj/Asynch_Timeout_Handler.o .shobj/Asynch_Timeout_Handler.so: Asynch_Timeout_Handler.cpp \ Asynch_Timeout_Handler.h $(ACE_ROOT)/ace/pre.h \ @@ -939,7 +934,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -973,7 +967,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1058,10 +1051,10 @@ endif $(TAO_ROOT)/tao/TAOC.i \ $(TAO_ROOT)/tao/Asynch_Reply_Dispatcher_Base.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -1077,10 +1070,6 @@ endif $(TAO_ROOT)/tao/Asynch_Reply_Dispatcher_Base.i \ Asynch_Reply_Dispatcher.i \ $(TAO_ROOT)/tao/Transport_Mux_Strategy.h \ - $(TAO_ROOT)/tao/IOPC.h \ - $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/IOP_CodecC.i \ - $(TAO_ROOT)/tao/IOPC.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ $(ACE_ROOT)/ace/Handle_Set.i \ @@ -1199,7 +1188,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1275,7 +1263,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1292,8 +1279,6 @@ endif $(TAO_ROOT)/tao/TimeBaseC.i \ messaging_export.h TAO_ExtC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/ORB_Core.h \ $(TAO_ROOT)/tao/Resource_Factory.h \ @@ -1523,7 +1508,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1599,7 +1583,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1696,8 +1679,6 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ @@ -1711,7 +1692,8 @@ endif $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ - $(TAO_ROOT)/tao/Stub.i + $(TAO_ROOT)/tao/Stub.i \ + $(TAO_ROOT)/tao/debug.h .obj/MessagingC.o .obj/MessagingC.so .shobj/MessagingC.o .shobj/MessagingC.so: MessagingC.cpp Messaging.h \ $(ACE_ROOT)/ace/pre.h messaging_export.h \ @@ -1815,7 +1797,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1891,7 +1872,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2053,8 +2033,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -2101,10 +2079,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -2225,7 +2203,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2301,7 +2278,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2390,6 +2366,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(TAO_ROOT)/tao/PortableServer/Servant_Base.h \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ @@ -2436,8 +2413,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -2486,6 +2461,7 @@ endif $(ACE_ROOT)/ace/Managed_Object.cpp \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.h \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.inl \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/TAO_Server_Request.h \ $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/IOPC.h \ @@ -2494,6 +2470,8 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ @@ -2679,7 +2657,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2755,7 +2732,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2873,7 +2849,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2949,7 +2924,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -3069,7 +3043,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3145,7 +3118,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -3276,7 +3248,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3352,7 +3323,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -3435,9 +3405,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -3455,9 +3425,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -3475,8 +3442,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3552,7 +3521,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -3576,8 +3544,6 @@ endif $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ Messaging_Policy_i.h \ Messaging.h \ @@ -3806,9 +3772,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -3826,9 +3792,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -3846,8 +3809,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3923,7 +3888,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -3947,8 +3911,6 @@ endif $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ Messaging_Policy_i.h \ Messaging.h \ @@ -4138,7 +4100,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4214,7 +4175,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4303,8 +4263,6 @@ endif $(TAO_ROOT)/tao/TAOC.h \ $(TAO_ROOT)/tao/TAOC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ Messaging_Policy_i.i \ $(TAO_ROOT)/tao/Stub.h \ @@ -4412,7 +4370,8 @@ endif $(ACE_ROOT)/ace/Framework_Component_T.inl \ $(ACE_ROOT)/ace/Framework_Component_T.cpp \ $(ACE_ROOT)/ace/Thread_Manager.i \ - $(TAO_ROOT)/tao/ORB_Core.i + $(TAO_ROOT)/tao/ORB_Core.i \ + $(TAO_ROOT)/tao/debug.h .obj/AMI_ClientRequestInfo_i.o .obj/AMI_ClientRequestInfo_i.so .shobj/AMI_ClientRequestInfo_i.o .shobj/AMI_ClientRequestInfo_i.so: AMI_ClientRequestInfo_i.cpp \ AMI_ClientRequestInfo_i.h $(ACE_ROOT)/ace/pre.h \ @@ -4479,9 +4438,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -4499,9 +4458,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -4519,8 +4475,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4596,7 +4554,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -4624,8 +4581,6 @@ endif $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ClientRequestInfo_i.inl \ @@ -4709,10 +4664,10 @@ endif $(ACE_ROOT)/ace/Event_Handler.i \ $(TAO_ROOT)/tao/Asynch_Reply_Dispatcher_Base.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ diff --git a/TAO/tao/Messaging_PolicyValueC.h b/TAO/tao/Messaging_PolicyValueC.h index e5b874459c1..74e2daef714 100644 --- a/TAO/tao/Messaging_PolicyValueC.h +++ b/TAO/tao/Messaging_PolicyValueC.h @@ -37,7 +37,7 @@ #endif #define TAO_EXPORT_MACRO TAO_Export -#include "tao/PolicyC.h" +#include "tao/Policy_ForwardC.h" #if defined (TAO_EXPORT_NESTED_CLASSES) # if defined (TAO_EXPORT_NESTED_MACRO) diff --git a/TAO/tao/Muxed_TMS.h b/TAO/tao/Muxed_TMS.h index 9c84a3deec8..8c789b773b5 100644 --- a/TAO/tao/Muxed_TMS.h +++ b/TAO/tao/Muxed_TMS.h @@ -1,4 +1,4 @@ -// This may look like C, but it's really -*- C++ -*- +// -*- C++ -*- //============================================================================= /** @@ -13,6 +13,7 @@ #ifndef TAO_MUXED_TMS_H #define TAO_MUXED_TMS_H + #include /**/ "ace/pre.h" #include "tao/Transport_Mux_Strategy.h" @@ -22,9 +23,10 @@ #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/Functor.h" -#include "ace/Hash_Map_Manager.h" +#include "ace/Hash_Map_Manager_T.h" #include "ace/Null_Mutex.h" +class TAO_ORB_Core; class TAO_Pluggable_Reply_Params; /** @@ -88,4 +90,5 @@ protected: }; #include /**/ "ace/post.h" + #endif /* MUXED_TMS_H */ diff --git a/TAO/tao/NVList.h b/TAO/tao/NVList.h index be798f112b4..049c516a556 100644 --- a/TAO/tao/NVList.h +++ b/TAO/tao/NVList.h @@ -28,7 +28,7 @@ #include "ace/Unbounded_Queue.h" #include "ace/Thread_Mutex.h" - +class TAO_ORB_Core; class TAO_InputCDR; namespace CORBA diff --git a/TAO/tao/ObjRefTemplate/Makefile b/TAO/tao/ObjRefTemplate/Makefile index 0b0caa124d9..74d23a9d7e7 100644 --- a/TAO/tao/ObjRefTemplate/Makefile +++ b/TAO/tao/ObjRefTemplate/Makefile @@ -147,28 +147,7 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -235,13 +214,17 @@ endif $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -250,6 +233,8 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Valuetype/ValueBase.h \ $(TAO_ROOT)/tao/Valuetype/valuetype_export.h \ $(TAO_ROOT)/tao/Valuetype/Value_VarOut_T.h \ @@ -317,19 +302,32 @@ endif ObjectReferenceTemplateC.i \ $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ - $(TAO_ROOT)/tao/PolicyC.h \ - $(TAO_ROOT)/tao/CurrentC.h \ - $(TAO_ROOT)/tao/CurrentC.i \ - $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ - $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ - $(TAO_ROOT)/tao/PolicyC.i \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/MProfile.i \ $(TAO_ROOT)/tao/ORB.h \ $(TAO_ROOT)/tao/ServicesC.h \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/ServicesC.i \ $(TAO_ROOT)/tao/ObjectIdListC.h \ $(TAO_ROOT)/tao/ObjectIdListC.i \ $(TAO_ROOT)/tao/objectid.h \ + $(TAO_ROOT)/tao/PolicyC.h \ + $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/CurrentC.i \ + $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ + $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ + $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ @@ -354,15 +352,13 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ diff --git a/TAO/tao/Object.h b/TAO/tao/Object.h index 9169796a3f6..86f98054568 100644 --- a/TAO/tao/Object.h +++ b/TAO/tao/Object.h @@ -47,11 +47,6 @@ namespace CORBA class InterfaceDef; typedef InterfaceDef *InterfaceDef_ptr; - class Object; - - typedef TAO_Pseudo_Var_T<Object> Object_var; - typedef TAO_Pseudo_Out_T<Object, Object_var> Object_out; - /** * @class Object * diff --git a/TAO/tao/PolicyFactory_Registry.cpp b/TAO/tao/PolicyFactory_Registry.cpp index 5b23453dff3..79dfbfd3ecd 100644 --- a/TAO/tao/PolicyFactory_Registry.cpp +++ b/TAO/tao/PolicyFactory_Registry.cpp @@ -59,8 +59,6 @@ CORBA::Policy_ptr TAO_PolicyFactory_Registry::create_policy (CORBA::PolicyType type, const CORBA::Any &value ACE_ENV_ARG_DECL) - ACE_THROW_SPEC ((CORBA::SystemException, - CORBA::PolicyError)) { PortableInterceptor::PolicyFactory_ptr policy_factory = PortableInterceptor::PolicyFactory::_nil (); @@ -83,8 +81,6 @@ TAO_PolicyFactory_Registry::create_policy (CORBA::PolicyType type, CORBA::Policy_ptr TAO_PolicyFactory_Registry::_create_policy (CORBA::PolicyType type ACE_ENV_ARG_DECL) - ACE_THROW_SPEC ((CORBA::SystemException, - CORBA::PolicyError)) { PortableInterceptor::PolicyFactory_ptr policy_factory = PortableInterceptor::PolicyFactory::_nil (); diff --git a/TAO/tao/PolicyFactory_Registry.h b/TAO/tao/PolicyFactory_Registry.h index 64182a7cd33..2ee98787423 100644 --- a/TAO/tao/PolicyFactory_Registry.h +++ b/TAO/tao/PolicyFactory_Registry.h @@ -6,7 +6,7 @@ * * $Id$ * - * @author Ossama Othman <ossama@uci.edu> + * @author Ossama Othman <ossama@dre.vanderbilt.edu> */ // =================================================================== @@ -22,7 +22,7 @@ #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "PortableInterceptorC.h" -#include "PolicyC.h" +#include "Policy_ForwardC.h" #include "ace/Map_Manager.h" #include "ace/Null_Mutex.h" @@ -31,7 +31,7 @@ class TAO_ORB_Core; /** * @class TAO_PolicyFactory_Registry * - * @brief ORB-specific registry + * @brief ORB-specific PortableInterceptor::PolicyFactory registry. * * ORB-specific registry that contains all portable interceptor * policy factories. @@ -74,16 +74,12 @@ public: /// contained in the CORBA::Any <value>. CORBA::Policy_ptr create_policy (CORBA::PolicyType type, const CORBA::Any &value - ACE_ENV_ARG_DECL) - ACE_THROW_SPEC ((CORBA::SystemException, - CORBA::PolicyError)); + ACE_ENV_ARG_DECL); /// Create an empty policy, usually to be filled in later by /// demarshaling. CORBA::Policy_ptr _create_policy (CORBA::PolicyType type - ACE_ENV_ARG_DECL) - ACE_THROW_SPEC ((CORBA::SystemException, - CORBA::PolicyError)); + ACE_ENV_ARG_DECL); private: diff --git a/TAO/tao/PortableInterceptorC.h b/TAO/tao/PortableInterceptorC.h index 1c1646c5e96..1b387977f61 100644 --- a/TAO/tao/PortableInterceptorC.h +++ b/TAO/tao/PortableInterceptorC.h @@ -38,11 +38,14 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +#include "Object.h" +#include "Objref_VarOut_T.h" #include "DynamicC.h" #include "Messaging_SyncScopeC.h" #include "IOPC.h" #include "PolicyC.h" + #if defined (TAO_EXPORT_MACRO) #undef TAO_EXPORT_MACRO #endif @@ -71,31 +74,31 @@ TAO_NAMESPACE PortableInterceptor { - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_INTERCEPTOR__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_INTERCEPTOR__ODDS_N_ENDS_CH_ - + class Interceptor; typedef Interceptor *Interceptor_ptr; struct tao_Interceptor_life; - + typedef TAO_Objref_Var_T< Interceptor, tao_Interceptor_life > Interceptor_var; - + typedef TAO_Objref_Out_T< Interceptor, tao_Interceptor_life > Interceptor_out; - + struct TAO_Export tao_Interceptor_life { static Interceptor_ptr tao_duplicate (Interceptor_ptr); @@ -106,7 +109,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_Interceptor_cast { static Interceptor_ptr tao_narrow ( @@ -117,13 +120,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_INTERCEPTOR_CH_) #define _PORTABLEINTERCEPTOR_INTERCEPTOR_CH_ - + class TAO_Export Interceptor : public virtual CORBA::Object { @@ -131,81 +134,81 @@ TAO_NAMESPACE PortableInterceptor typedef Interceptor_ptr _ptr_type; typedef Interceptor_var _var_type; static int _tao_class_id; - + // The static operations. static Interceptor_ptr _duplicate (Interceptor_ptr obj); - + static Interceptor_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static Interceptor_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static Interceptor_ptr _nil (void) { return (Interceptor_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual char * name ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void destroy ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: Interceptor (void); virtual ~Interceptor (void); - + private: Interceptor (const Interceptor &); void operator= (const Interceptor &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_Interceptor; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:51 #if !defined (_PORTABLEINTERCEPTOR_FORWARDREQUEST_CH_) #define _PORTABLEINTERCEPTOR_FORWARDREQUEST_CH_ - + class TAO_Export ForwardRequest : public CORBA::UserException { public: - + CORBA::Object_var forward; CORBA::Boolean permanent; ForwardRequest (void); @@ -213,9 +216,9 @@ TAO_NAMESPACE PortableInterceptor ~ForwardRequest (void); ForwardRequest &operator= (const ForwardRequest &); - + static void _tao_any_destructor (void *); - + static ForwardRequest *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -227,108 +230,108 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ctor.cpp:66 - + ForwardRequest ( const CORBA::Object_ptr _tao_forward, CORBA::Boolean _tao_permanent ); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ForwardRequest; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typedef/typedef_ch.cpp:343 - + typedef CORBA::Short ReplyStatus; typedef CORBA::Short_out ReplyStatus_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ReplyStatus; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_constant/constant_ch.cpp:52 - + const PortableInterceptor::ReplyStatus SUCCESSFUL = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_constant/constant_ch.cpp:52 - + const PortableInterceptor::ReplyStatus SYSTEM_EXCEPTION = 1; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_constant/constant_ch.cpp:52 - + const PortableInterceptor::ReplyStatus USER_EXCEPTION = 2; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_constant/constant_ch.cpp:52 - + const PortableInterceptor::ReplyStatus LOCATION_FORWARD = 3; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_constant/constant_ch.cpp:52 - + const PortableInterceptor::ReplyStatus LOCATION_FORWARD_PERMANENT = 4; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_constant/constant_ch.cpp:52 - + const PortableInterceptor::ReplyStatus TRANSPORT_RETRY = 5; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_constant/constant_ch.cpp:52 - + const PortableInterceptor::ReplyStatus UNKNOWN = 6; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typedef/typedef_ch.cpp:343 - + typedef CORBA::ULong SlotId; typedef CORBA::ULong_out SlotId_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_SlotId; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:51 #if !defined (_PORTABLEINTERCEPTOR_INVALIDSLOT_CH_) #define _PORTABLEINTERCEPTOR_INVALIDSLOT_CH_ - + class TAO_Export InvalidSlot : public CORBA::UserException { public: - + InvalidSlot (void); InvalidSlot (const InvalidSlot &); ~InvalidSlot (void); InvalidSlot &operator= (const InvalidSlot &); - + static void _tao_any_destructor (void *); - + static InvalidSlot *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -340,49 +343,49 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_InvalidSlot; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_CURRENT__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_CURRENT__ODDS_N_ENDS_CH_ - + class Current; typedef Current *Current_ptr; struct tao_Current_life; - + typedef TAO_Objref_Var_T< Current, tao_Current_life > Current_var; - + typedef TAO_Objref_Out_T< Current, tao_Current_life > Current_out; - + struct TAO_Export tao_Current_life { static Current_ptr tao_duplicate (Current_ptr); @@ -393,7 +396,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_Current_cast { static Current_ptr tao_narrow ( @@ -404,13 +407,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_CURRENT_CH_) #define _PORTABLEINTERCEPTOR_CURRENT_CH_ - + class TAO_Export Current : public virtual CORBA::Current { @@ -418,30 +421,30 @@ TAO_NAMESPACE PortableInterceptor typedef Current_ptr _ptr_type; typedef Current_var _var_type; static int _tao_class_id; - + // The static operations. static Current_ptr _duplicate (Current_ptr obj); - + static Current_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static Current_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static Current_ptr _nil (void) { return (Current_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Any * get_slot ( PortableInterceptor::SlotId id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -450,10 +453,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::InvalidSlot )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void set_slot ( PortableInterceptor::SlotId id, const CORBA::Any & data @@ -463,55 +466,55 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::InvalidSlot )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: Current (void); virtual ~Current (void); - + private: Current (const Current &); void operator= (const Current &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_Current; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_REQUESTINFO__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_REQUESTINFO__ODDS_N_ENDS_CH_ - + class RequestInfo; typedef RequestInfo *RequestInfo_ptr; struct tao_RequestInfo_life; - + typedef TAO_Objref_Var_T< RequestInfo, tao_RequestInfo_life > RequestInfo_var; - + typedef TAO_Objref_Out_T< RequestInfo, tao_RequestInfo_life > RequestInfo_out; - + struct TAO_Export tao_RequestInfo_life { static RequestInfo_ptr tao_duplicate (RequestInfo_ptr); @@ -522,7 +525,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_RequestInfo_cast { static RequestInfo_ptr tao_narrow ( @@ -533,13 +536,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_REQUESTINFO_CH_) #define _PORTABLEINTERCEPTOR_REQUESTINFO_CH_ - + class TAO_Export RequestInfo : public virtual CORBA::Object { @@ -547,140 +550,140 @@ TAO_NAMESPACE PortableInterceptor typedef RequestInfo_ptr _ptr_type; typedef RequestInfo_var _var_type; static int _tao_class_id; - + // The static operations. static RequestInfo_ptr _duplicate (RequestInfo_ptr obj); - + static RequestInfo_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static RequestInfo_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static RequestInfo_ptr _nil (void) { return (RequestInfo_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::ULong request_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual char * operation ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::Dynamic::ParameterList * arguments ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::Dynamic::ExceptionList * exceptions ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::Dynamic::ContextList * contexts ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::Dynamic::RequestContext * operation_context ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Any * result ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Boolean response_expected ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual Messaging::SyncScope sync_scope ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual PortableInterceptor::ReplyStatus reply_status ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Object_ptr forward_reference ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Any * get_slot ( PortableInterceptor::SlotId id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -689,10 +692,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::InvalidSlot )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::IOP::ServiceContext * get_request_service_context ( IOP::ServiceId id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -700,10 +703,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::IOP::ServiceContext * get_reply_service_context ( IOP::ServiceId id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -711,55 +714,55 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: RequestInfo (void); virtual ~RequestInfo (void); - + private: RequestInfo (const RequestInfo &); void operator= (const RequestInfo &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_RequestInfo; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_CLIENTREQUESTINFO__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_CLIENTREQUESTINFO__ODDS_N_ENDS_CH_ - + class ClientRequestInfo; typedef ClientRequestInfo *ClientRequestInfo_ptr; struct tao_ClientRequestInfo_life; - + typedef TAO_Objref_Var_T< ClientRequestInfo, tao_ClientRequestInfo_life > ClientRequestInfo_var; - + typedef TAO_Objref_Out_T< ClientRequestInfo, tao_ClientRequestInfo_life > ClientRequestInfo_out; - + struct TAO_Export tao_ClientRequestInfo_life { static ClientRequestInfo_ptr tao_duplicate (ClientRequestInfo_ptr); @@ -770,7 +773,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_ClientRequestInfo_cast { static ClientRequestInfo_ptr tao_narrow ( @@ -781,13 +784,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_CLIENTREQUESTINFO_CH_) #define _PORTABLEINTERCEPTOR_CLIENTREQUESTINFO_CH_ - + class TAO_Export ClientRequestInfo : public virtual PortableInterceptor::RequestInfo { @@ -795,80 +798,80 @@ TAO_NAMESPACE PortableInterceptor typedef ClientRequestInfo_ptr _ptr_type; typedef ClientRequestInfo_var _var_type; static int _tao_class_id; - + // The static operations. static ClientRequestInfo_ptr _duplicate (ClientRequestInfo_ptr obj); - + static ClientRequestInfo_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ClientRequestInfo_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ClientRequestInfo_ptr _nil (void) { return (ClientRequestInfo_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Object_ptr target ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Object_ptr effective_target ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::IOP::TaggedProfile * effective_profile ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Any * received_exception ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual char * received_exception_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::IOP::TaggedComponent * get_effective_component ( IOP::ComponentId id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -876,10 +879,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::IOP::TaggedComponentSeq * get_effective_components ( IOP::ComponentId id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -887,10 +890,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::Policy_ptr get_request_policy ( CORBA::PolicyType type ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -898,10 +901,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void add_request_service_context ( const IOP::ServiceContext & service_context, CORBA::Boolean replace @@ -910,55 +913,55 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: ClientRequestInfo (void); virtual ~ClientRequestInfo (void); - + private: ClientRequestInfo (const ClientRequestInfo &); void operator= (const ClientRequestInfo &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ClientRequestInfo; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_SERVERREQUESTINFO__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_SERVERREQUESTINFO__ODDS_N_ENDS_CH_ - + class ServerRequestInfo; typedef ServerRequestInfo *ServerRequestInfo_ptr; struct tao_ServerRequestInfo_life; - + typedef TAO_Objref_Var_T< ServerRequestInfo, tao_ServerRequestInfo_life > ServerRequestInfo_var; - + typedef TAO_Objref_Out_T< ServerRequestInfo, tao_ServerRequestInfo_life > ServerRequestInfo_out; - + struct TAO_Export tao_ServerRequestInfo_life { static ServerRequestInfo_ptr tao_duplicate (ServerRequestInfo_ptr); @@ -969,7 +972,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_ServerRequestInfo_cast { static ServerRequestInfo_ptr tao_narrow ( @@ -980,13 +983,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_SERVERREQUESTINFO_CH_) #define _PORTABLEINTERCEPTOR_SERVERREQUESTINFO_CH_ - + class TAO_Export ServerRequestInfo : public virtual PortableInterceptor::RequestInfo { @@ -994,100 +997,100 @@ TAO_NAMESPACE PortableInterceptor typedef ServerRequestInfo_ptr _ptr_type; typedef ServerRequestInfo_var _var_type; static int _tao_class_id; - + // The static operations. static ServerRequestInfo_ptr _duplicate (ServerRequestInfo_ptr obj); - + static ServerRequestInfo_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ServerRequestInfo_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ServerRequestInfo_ptr _nil (void) { return (ServerRequestInfo_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Any * sending_exception ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual char * server_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual char * orb_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::PortableInterceptor::AdapterName * adapter_name ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::OctetSeq * object_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::OctetSeq * adapter_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual char * target_most_derived_interface ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::Policy_ptr get_server_policy ( CORBA::PolicyType type ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1095,10 +1098,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void set_slot ( PortableInterceptor::SlotId id, const CORBA::Any & data @@ -1108,10 +1111,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::InvalidSlot )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Boolean target_is_a ( const char * id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1119,10 +1122,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void add_reply_service_context ( const IOP::ServiceContext & service_context, CORBA::Boolean replace @@ -1131,55 +1134,55 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: ServerRequestInfo (void); virtual ~ServerRequestInfo (void); - + private: ServerRequestInfo (const ServerRequestInfo &); void operator= (const ServerRequestInfo &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ServerRequestInfo; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_CLIENTREQUESTINTERCEPTOR__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_CLIENTREQUESTINTERCEPTOR__ODDS_N_ENDS_CH_ - + class ClientRequestInterceptor; typedef ClientRequestInterceptor *ClientRequestInterceptor_ptr; struct tao_ClientRequestInterceptor_life; - + typedef TAO_Objref_Var_T< ClientRequestInterceptor, tao_ClientRequestInterceptor_life > ClientRequestInterceptor_var; - + typedef TAO_Objref_Out_T< ClientRequestInterceptor, tao_ClientRequestInterceptor_life > ClientRequestInterceptor_out; - + struct TAO_Export tao_ClientRequestInterceptor_life { static ClientRequestInterceptor_ptr tao_duplicate (ClientRequestInterceptor_ptr); @@ -1190,7 +1193,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_ClientRequestInterceptor_cast { static ClientRequestInterceptor_ptr tao_narrow ( @@ -1201,13 +1204,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_CLIENTREQUESTINTERCEPTOR_CH_) #define _PORTABLEINTERCEPTOR_CLIENTREQUESTINTERCEPTOR_CH_ - + class TAO_Export ClientRequestInterceptor : public virtual PortableInterceptor::Interceptor { @@ -1215,30 +1218,30 @@ TAO_NAMESPACE PortableInterceptor typedef ClientRequestInterceptor_ptr _ptr_type; typedef ClientRequestInterceptor_var _var_type; static int _tao_class_id; - + // The static operations. static ClientRequestInterceptor_ptr _duplicate (ClientRequestInterceptor_ptr obj); - + static ClientRequestInterceptor_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ClientRequestInterceptor_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ClientRequestInterceptor_ptr _nil (void) { return (ClientRequestInterceptor_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void send_request ( PortableInterceptor::ClientRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1247,10 +1250,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ForwardRequest )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void send_poll ( PortableInterceptor::ClientRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1258,10 +1261,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void receive_reply ( PortableInterceptor::ClientRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1269,10 +1272,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void receive_exception ( PortableInterceptor::ClientRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1281,10 +1284,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ForwardRequest )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void receive_other ( PortableInterceptor::ClientRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1293,55 +1296,55 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ForwardRequest )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: ClientRequestInterceptor (void); virtual ~ClientRequestInterceptor (void); - + private: ClientRequestInterceptor (const ClientRequestInterceptor &); void operator= (const ClientRequestInterceptor &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ClientRequestInterceptor; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_SERVERREQUESTINTERCEPTOR__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_SERVERREQUESTINTERCEPTOR__ODDS_N_ENDS_CH_ - + class ServerRequestInterceptor; typedef ServerRequestInterceptor *ServerRequestInterceptor_ptr; struct tao_ServerRequestInterceptor_life; - + typedef TAO_Objref_Var_T< ServerRequestInterceptor, tao_ServerRequestInterceptor_life > ServerRequestInterceptor_var; - + typedef TAO_Objref_Out_T< ServerRequestInterceptor, tao_ServerRequestInterceptor_life > ServerRequestInterceptor_out; - + struct TAO_Export tao_ServerRequestInterceptor_life { static ServerRequestInterceptor_ptr tao_duplicate (ServerRequestInterceptor_ptr); @@ -1352,7 +1355,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_ServerRequestInterceptor_cast { static ServerRequestInterceptor_ptr tao_narrow ( @@ -1363,13 +1366,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_SERVERREQUESTINTERCEPTOR_CH_) #define _PORTABLEINTERCEPTOR_SERVERREQUESTINTERCEPTOR_CH_ - + class TAO_Export ServerRequestInterceptor : public virtual PortableInterceptor::Interceptor { @@ -1377,30 +1380,30 @@ TAO_NAMESPACE PortableInterceptor typedef ServerRequestInterceptor_ptr _ptr_type; typedef ServerRequestInterceptor_var _var_type; static int _tao_class_id; - + // The static operations. static ServerRequestInterceptor_ptr _duplicate (ServerRequestInterceptor_ptr obj); - + static ServerRequestInterceptor_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ServerRequestInterceptor_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ServerRequestInterceptor_ptr _nil (void) { return (ServerRequestInterceptor_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void receive_request_service_contexts ( PortableInterceptor::ServerRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1409,10 +1412,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ForwardRequest )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void receive_request ( PortableInterceptor::ServerRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1421,10 +1424,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ForwardRequest )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void send_reply ( PortableInterceptor::ServerRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1432,10 +1435,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void send_exception ( PortableInterceptor::ServerRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1444,10 +1447,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ForwardRequest )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void send_other ( PortableInterceptor::ServerRequestInfo_ptr ri ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1456,55 +1459,55 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ForwardRequest )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: ServerRequestInterceptor (void); virtual ~ServerRequestInterceptor (void); - + private: ServerRequestInterceptor (const ServerRequestInterceptor &); void operator= (const ServerRequestInterceptor &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ServerRequestInterceptor; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_POLICYFACTORY__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_POLICYFACTORY__ODDS_N_ENDS_CH_ - + class PolicyFactory; typedef PolicyFactory *PolicyFactory_ptr; struct tao_PolicyFactory_life; - + typedef TAO_Objref_Var_T< PolicyFactory, tao_PolicyFactory_life > PolicyFactory_var; - + typedef TAO_Objref_Out_T< PolicyFactory, tao_PolicyFactory_life > PolicyFactory_out; - + struct TAO_Export tao_PolicyFactory_life { static PolicyFactory_ptr tao_duplicate (PolicyFactory_ptr); @@ -1515,7 +1518,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_PolicyFactory_cast { static PolicyFactory_ptr tao_narrow ( @@ -1526,13 +1529,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_POLICYFACTORY_CH_) #define _PORTABLEINTERCEPTOR_POLICYFACTORY_CH_ - + class TAO_Export PolicyFactory : public virtual CORBA::Object { @@ -1540,30 +1543,30 @@ TAO_NAMESPACE PortableInterceptor typedef PolicyFactory_ptr _ptr_type; typedef PolicyFactory_var _var_type; static int _tao_class_id; - + // The static operations. static PolicyFactory_ptr _duplicate (PolicyFactory_ptr obj); - + static PolicyFactory_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static PolicyFactory_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static PolicyFactory_ptr _nil (void) { return (PolicyFactory_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::Policy_ptr create_policy ( CORBA::PolicyType type, const CORBA::Any & value @@ -1573,9 +1576,9 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , CORBA::PolicyError )) = 0; - + // Hand-crafted addition. - + virtual ::CORBA::Policy_ptr _create_policy ( CORBA::PolicyType type ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1587,26 +1590,26 @@ TAO_NAMESPACE PortableInterceptor // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: PolicyFactory (void); virtual ~PolicyFactory (void); - + private: PolicyFactory (const PolicyFactory &); void operator= (const PolicyFactory &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_PolicyFactory; // The #if defined guard and the rest of the declarations and typedefs @@ -1620,25 +1623,25 @@ TAO_NAMESPACE PortableInterceptor #if !defined (_PORTABLEINTERCEPTOR_ORBINITINFO__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_ORBINITINFO__ODDS_N_ENDS_CH_ - + class ORBInitInfo; typedef ORBInitInfo *ORBInitInfo_ptr; struct tao_ORBInitInfo_life; - + typedef TAO_Objref_Var_T< ORBInitInfo, tao_ORBInitInfo_life > ORBInitInfo_var; - + typedef TAO_Objref_Out_T< ORBInitInfo, tao_ORBInitInfo_life > ORBInitInfo_out; - + struct TAO_Export tao_ORBInitInfo_life { static ORBInitInfo_ptr tao_duplicate (ORBInitInfo_ptr); @@ -1649,7 +1652,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_ORBInitInfo_cast { static ORBInitInfo_ptr tao_narrow ( @@ -1660,13 +1663,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_ORBINITINFO_CH_) #define _PORTABLEINTERCEPTOR_ORBINITINFO_CH_ - + class TAO_Export ORBInitInfo : public virtual CORBA::Object { @@ -1674,58 +1677,58 @@ TAO_NAMESPACE PortableInterceptor typedef ORBInitInfo_ptr _ptr_type; typedef ORBInitInfo_var _var_type; static int _tao_class_id; - + // The static operations. static ORBInitInfo_ptr _duplicate (ORBInitInfo_ptr obj); - + static ORBInitInfo_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ORBInitInfo_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ORBInitInfo_ptr _nil (void) { return (ORBInitInfo_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typedef/typedef_ch.cpp:377 - + typedef char * ObjectId; typedef CORBA::String_var ObjectId_var; typedef CORBA::String_out ObjectId_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + static ::CORBA::TypeCode_ptr _tc_ObjectId; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:51 #if !defined (_PORTABLEINTERCEPTOR_ORBINITINFO_DUPLICATENAME_CH_) #define _PORTABLEINTERCEPTOR_ORBINITINFO_DUPLICATENAME_CH_ - + class TAO_Export DuplicateName : public CORBA::UserException { public: - + TAO_String_Manager name; DuplicateName (void); DuplicateName (const DuplicateName &); ~DuplicateName (void); DuplicateName &operator= (const DuplicateName &); - + static void _tao_any_destructor (void *); - + static DuplicateName *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -1737,50 +1740,50 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ctor.cpp:66 - + DuplicateName ( const char * _tao_name ); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + static ::CORBA::TypeCode_ptr _tc_DuplicateName; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:51 #if !defined (_PORTABLEINTERCEPTOR_ORBINITINFO_INVALIDNAME_CH_) #define _PORTABLEINTERCEPTOR_ORBINITINFO_INVALIDNAME_CH_ - + class TAO_Export InvalidName : public CORBA::UserException { public: - + InvalidName (void); InvalidName (const InvalidName &); ~InvalidName (void); InvalidName &operator= (const InvalidName &); - + static void _tao_any_destructor (void *); - + static InvalidName *_downcast (CORBA::Exception *); static CORBA::Exception *_alloc (void); @@ -1792,58 +1795,58 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ACE_ENV_ARG_DECL_NOT_USED ) const; - + virtual void _tao_decode ( TAO_InputCDR & ACE_ENV_ARG_DECL_NOT_USED ); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_exception/exception_ch.cpp:125 - + virtual CORBA::TypeCode_ptr _type (void) const; }; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + static ::CORBA::TypeCode_ptr _tc_InvalidName; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::CORBA::StringSeq * arguments ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual char * orb_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual ::IOP::CodecFactory_ptr codec_factory ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void register_initial_reference ( const char * id, CORBA::Object_ptr obj @@ -1853,10 +1856,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ORBInitInfo::InvalidName )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual CORBA::Object_ptr resolve_initial_references ( const char * id ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1865,10 +1868,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ORBInitInfo::InvalidName )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void add_client_request_interceptor ( PortableInterceptor::ClientRequestInterceptor_ptr interceptor ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1877,10 +1880,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ORBInitInfo::DuplicateName )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void add_server_request_interceptor ( PortableInterceptor::ServerRequestInterceptor_ptr interceptor ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1889,10 +1892,10 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ORBInitInfo::DuplicateName )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void add_ior_interceptor ( PortableInterceptor::IORInterceptor_ptr interceptor ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -1901,20 +1904,20 @@ TAO_NAMESPACE PortableInterceptor CORBA::SystemException , PortableInterceptor::ORBInitInfo::DuplicateName )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual PortableInterceptor::SlotId allocate_slot_id ( ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS ) ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void register_policy_factory ( CORBA::PolicyType type, PortableInterceptor::PolicyFactory_ptr policy_factory @@ -1923,55 +1926,55 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: ORBInitInfo (void); virtual ~ORBInitInfo (void); - + private: ORBInitInfo (const ORBInitInfo &); void operator= (const ORBInitInfo &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ORBInitInfo; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_interface.cpp:576 #if !defined (_PORTABLEINTERCEPTOR_ORBINITIALIZER__ODDS_N_ENDS_CH_) #define _PORTABLEINTERCEPTOR_ORBINITIALIZER__ODDS_N_ENDS_CH_ - + class ORBInitializer; typedef ORBInitializer *ORBInitializer_ptr; struct tao_ORBInitializer_life; - + typedef TAO_Objref_Var_T< ORBInitializer, tao_ORBInitializer_life > ORBInitializer_var; - + typedef TAO_Objref_Out_T< ORBInitializer, tao_ORBInitializer_life > ORBInitializer_out; - + struct TAO_Export tao_ORBInitializer_life { static ORBInitializer_ptr tao_duplicate (ORBInitializer_ptr); @@ -1982,7 +1985,7 @@ TAO_NAMESPACE PortableInterceptor TAO_OutputCDR & ); }; - + struct TAO_Export tao_ORBInitializer_cast { static ORBInitializer_ptr tao_narrow ( @@ -1993,13 +1996,13 @@ TAO_NAMESPACE PortableInterceptor }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:53 #if !defined (_PORTABLEINTERCEPTOR_ORBINITIALIZER_CH_) #define _PORTABLEINTERCEPTOR_ORBINITIALIZER_CH_ - + class TAO_Export ORBInitializer : public virtual CORBA::Object { @@ -2007,30 +2010,30 @@ TAO_NAMESPACE PortableInterceptor typedef ORBInitializer_ptr _ptr_type; typedef ORBInitializer_var _var_type; static int _tao_class_id; - + // The static operations. static ORBInitializer_ptr _duplicate (ORBInitializer_ptr obj); - + static ORBInitializer_ptr _narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ORBInitializer_ptr _unchecked_narrow ( CORBA::Object_ptr obj ACE_ENV_ARG_DECL_WITH_DEFAULTS ); - + static ORBInitializer_ptr _nil (void) { return (ORBInitializer_ptr)0; } - + static void _tao_any_destructor (void *); - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void pre_init ( PortableInterceptor::ORBInitInfo_ptr info ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -2038,10 +2041,10 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_operation/operation_ch.cpp:46 - + virtual void post_init ( PortableInterceptor::ORBInitInfo_ptr info ACE_ENV_ARG_DECL_WITH_DEFAULTS @@ -2049,32 +2052,32 @@ TAO_NAMESPACE PortableInterceptor ACE_THROW_SPEC (( CORBA::SystemException )) = 0; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_interface/interface_ch.cpp:210 - + virtual void *_tao_QueryInterface (ptrdiff_t type); - + virtual const char* _interface_repository_id (void) const; virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr); - + protected: ORBInitializer (void); virtual ~ORBInitializer (void); - + private: ORBInitializer (const ORBInitializer &); void operator= (const ORBInitializer &); }; #endif /* end #if !defined */ - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_ORBInitializer; - /// Hand-crafted addition. + /// Hand-crafted addition. /// Register an ORBInitializer with the global ORBInitializer /// table. TAO_NAMESPACE_STORAGE_CLASS void register_orb_initializer ( @@ -2243,4 +2246,3 @@ TAO_Export CORBA::Boolean operator>> (TAO_InputCDR &, PortableInterceptor::IORIn #include /**/ "ace/post.h" #endif /* ifndef */ - diff --git a/TAO/tao/PortableServer/Makefile b/TAO/tao/PortableServer/Makefile index 13d174b304d..ea690010227 100644 --- a/TAO/tao/PortableServer/Makefile +++ b/TAO/tao/PortableServer/Makefile @@ -210,7 +210,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -286,7 +285,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -303,7 +301,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i Object_Adapter.h Key_Adapters.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + Object_Adapter.h Key_Adapters.h \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ @@ -339,8 +338,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -481,7 +478,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -557,7 +553,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -575,7 +570,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(TAO_ROOT)/tao/Stub.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ @@ -610,15 +606,13 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -785,7 +779,9 @@ endif $(TAO_ROOT)/tao/Valuetype/Sequence_T.inl \ $(TAO_ROOT)/tao/Valuetype/Sequence_T.cpp \ $(TAO_ROOT)/tao/ObjRefTemplate/ObjectReferenceTemplateC.i \ - POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i POA.i + POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i POA.i .obj/POA.o .obj/POA.so .shobj/POA.o .shobj/POA.so: POA.cpp \ POA.h \ @@ -946,7 +942,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -977,7 +972,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ @@ -991,6 +985,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -1031,8 +1026,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -1148,6 +1141,8 @@ endif POAManager.i \ POA_Cached_Policies.h \ POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ @@ -1303,28 +1298,6 @@ endif $(ACE_ROOT)/ace/Lock.inl \ $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(ACE_ROOT)/ace/OS_Memory.h \ - $(ACE_ROOT)/ace/OS_Errno.h \ - $(ACE_ROOT)/ace/os_include/os_errno.h \ - $(ACE_ROOT)/ace/OS_Errno.inl \ - $(ACE_ROOT)/ace/OS_Memory.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Acceptor_Filter.i \ $(TAO_ROOT)/tao/Transport_Acceptor.h \ $(TAO_ROOT)/tao/Transport_Acceptor.inl @@ -1430,7 +1403,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1506,7 +1478,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1523,7 +1494,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -1558,8 +1530,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -1675,6 +1645,8 @@ endif $(TAO_ROOT)/tao/Valuetype/Sequence_T.cpp \ $(TAO_ROOT)/tao/ObjRefTemplate/ObjectReferenceTemplateC.i \ POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp POA.i \ @@ -2035,7 +2007,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2145,7 +2116,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2221,7 +2191,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2239,7 +2208,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -2355,7 +2325,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2431,7 +2400,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2449,10 +2417,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i poa_macros.h \ - $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + poa_macros.h $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ @@ -2602,6 +2568,8 @@ endif $(TAO_ROOT)/tao/Policy_Set.i \ POA_Policy_Set.i Object_Adapter.i POA_Cached_Policies.h \ POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp POA.i \ @@ -2761,7 +2729,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2837,7 +2804,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2855,7 +2821,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -2988,7 +2955,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3064,7 +3030,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -3082,7 +3047,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ $(ACE_ROOT)/ace/Atomic_Op.h \ $(ACE_ROOT)/ace/Atomic_Op_T.h \ @@ -3124,8 +3089,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -3235,6 +3198,8 @@ endif $(TAO_ROOT)/tao/Valuetype/Sequence_T.cpp \ $(TAO_ROOT)/tao/ObjRefTemplate/ObjectReferenceTemplateC.i \ POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp POA.i \ @@ -3249,6 +3214,7 @@ endif $(ACE_ROOT)/ace/Managed_Object.cpp \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.h \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.inl \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Timeprobe.h \ $(ACE_ROOT)/ace/Timeprobe.h \ $(ACE_ROOT)/ace/Malloc_Allocator.h \ @@ -3481,7 +3447,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3512,7 +3477,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ @@ -3526,7 +3490,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -3561,8 +3526,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -3672,6 +3635,8 @@ endif $(TAO_ROOT)/tao/Valuetype/Sequence_T.cpp \ $(TAO_ROOT)/tao/ObjRefTemplate/ObjectReferenceTemplateC.i \ POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp POA.i \ @@ -3849,7 +3814,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3925,7 +3889,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -3941,7 +3904,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -3976,8 +3940,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -4190,6 +4152,23 @@ endif $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -4201,32 +4180,14 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4241,7 +4202,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -4282,8 +4242,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -4432,7 +4390,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4508,7 +4465,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4526,6 +4482,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ PortableServerC.i \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ $(ACE_ROOT)/ace/Atomic_Op.h \ @@ -4564,8 +4521,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -4703,6 +4658,8 @@ endif $(TAO_ROOT)/tao/GIOP_Message_Version.h \ $(TAO_ROOT)/tao/GIOP_Message_Version.inl \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ $(TAO_ROOT)/tao/Profile.i @@ -4807,7 +4764,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4883,7 +4839,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4902,6 +4857,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ PortableServerC.i \ Servant_Base.h \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ @@ -4949,8 +4905,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -5051,6 +5005,7 @@ endif $(ACE_ROOT)/ace/Managed_Object.cpp \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.h \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.inl \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/TAO_Server_Request.h \ $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/IOPC.h \ @@ -5059,6 +5014,8 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ @@ -5254,7 +5211,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -5330,7 +5286,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -5347,7 +5302,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(TAO_ROOT)/tao/ORB.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(TAO_ROOT)/tao/ORB.h \ $(TAO_ROOT)/tao/ServicesC.h \ $(TAO_ROOT)/tao/ServicesC.i \ $(TAO_ROOT)/tao/ObjectIdListC.h \ @@ -5463,7 +5419,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -5536,7 +5491,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -5548,6 +5502,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ ImplRepoC.i \ PortableServer.h \ PortableServerC.h \ @@ -5644,9 +5599,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -5664,9 +5619,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -5684,8 +5636,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -5761,7 +5715,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -5785,8 +5738,6 @@ endif $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ @@ -5800,6 +5751,8 @@ endif $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/PICurrent.h \ $(ACE_ROOT)/ace/Array_Base.h \ @@ -5814,6 +5767,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -6067,9 +6021,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -6087,9 +6041,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -6107,8 +6058,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6184,7 +6137,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -6214,8 +6166,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ ServerInterceptorAdapter.inl ServerRequestInfo.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ @@ -6229,6 +6179,8 @@ endif $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/PICurrent.inl \ @@ -6240,6 +6192,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -6472,7 +6425,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6503,7 +6455,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ @@ -6517,7 +6468,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -6552,8 +6504,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -6663,6 +6613,8 @@ endif $(TAO_ROOT)/tao/Valuetype/Sequence_T.cpp \ $(TAO_ROOT)/tao/ObjRefTemplate/ObjectReferenceTemplateC.i \ POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp POA.i @@ -6823,7 +6775,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6854,7 +6805,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ @@ -6868,7 +6818,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -6903,8 +6854,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -7040,7 +6989,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7116,7 +7064,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -7134,10 +7081,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ POA_Policies.i POA_Cached_Policies.i POA_Policy_Set.h \ $(TAO_ROOT)/tao/Policy_Set.h \ @@ -7244,7 +7189,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7320,7 +7264,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -7338,10 +7281,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ POA_Policies.i @@ -7411,9 +7352,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -7431,9 +7372,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -7451,8 +7389,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7528,7 +7468,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -7552,14 +7491,13 @@ endif $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ PortableServer_PolicyFactory.h PortableServerC.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i Object_Adapter.h Key_Adapters.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + Object_Adapter.h Key_Adapters.h \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ @@ -7767,9 +7705,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -7787,9 +7725,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -7807,8 +7742,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7884,7 +7821,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -7908,14 +7844,13 @@ endif $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ POA_Policies.h PortableServerC.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i POA_Policies.i + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + POA_Policies.i .obj/POA_Policy_Set.o .obj/POA_Policy_Set.so .shobj/POA_Policy_Set.o .shobj/POA_Policy_Set.so: POA_Policy_Set.cpp POA_Policy_Set.h \ $(ACE_ROOT)/ace/pre.h POA_Policies.h \ @@ -8018,7 +7953,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8094,7 +8028,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -8112,10 +8045,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ POA_Policies.i $(TAO_ROOT)/tao/Policy_Set.h \ $(TAO_ROOT)/tao/Policy_Set.i \ @@ -8338,7 +8269,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8414,7 +8344,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -8431,10 +8360,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ POA_Policies.i $(TAO_ROOT)/tao/Policy_Set.h \ $(TAO_ROOT)/tao/Policy_Set.i @@ -8505,9 +8432,9 @@ endif $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -8525,9 +8452,6 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -8545,8 +8469,10 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8622,7 +8548,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -8715,8 +8640,6 @@ endif $(TAO_ROOT)/tao/IORInterceptor/iorinterceptor_export.h \ $(TAO_ROOT)/tao/IORInterceptor/IORInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ IORInfo.inl \ POA.h \ @@ -8733,6 +8656,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -8805,6 +8729,8 @@ endif POAManager.i \ POA_Cached_Policies.h \ POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ @@ -8897,28 +8823,7 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8985,13 +8890,17 @@ endif $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -9000,6 +8909,8 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Valuetype/ValueBase.h \ $(TAO_ROOT)/tao/Valuetype/valuetype_export.h \ $(TAO_ROOT)/tao/Valuetype/Value_VarOut_T.h \ @@ -9156,28 +9067,7 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -9244,13 +9134,17 @@ endif $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -9259,6 +9153,8 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Valuetype/ValueBase.h \ $(TAO_ROOT)/tao/Valuetype/valuetype_export.h \ $(TAO_ROOT)/tao/Valuetype/Value_VarOut_T.h \ @@ -9333,6 +9229,19 @@ endif $(ACE_ROOT)/ace/SString.i Object_Adapter.h \ Key_Adapters.h PortableServerC.h \ $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ @@ -9341,7 +9250,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i $(ACE_ROOT)/ace/Map_T.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ $(ACE_ROOT)/ace/Pair_T.i \ $(ACE_ROOT)/ace/Pair_T.cpp \ @@ -9375,8 +9285,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -9416,6 +9324,8 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp POA.i @@ -9507,10 +9417,6 @@ endif $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -9520,10 +9426,9 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -9599,7 +9504,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -9608,12 +9512,14 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Synch_T.h \ $(ACE_ROOT)/ace/Synch.h \ @@ -9678,6 +9584,8 @@ endif $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/PICurrent.h \ $(ACE_ROOT)/ace/Array_Base.h \ @@ -9702,10 +9610,10 @@ endif $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/TAO_Server_Request.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -9796,7 +9704,8 @@ endif $(TAO_ROOT)/tao/Pluggable_Messaging.h \ $(TAO_ROOT)/tao/Pluggable_Messaging.i \ $(TAO_ROOT)/tao/GIOP_Utils.h \ - $(TAO_ROOT)/tao/GIOP_Utils.i + $(TAO_ROOT)/tao/GIOP_Utils.i \ + $(TAO_ROOT)/tao/debug.h .obj/PortableGroup_Hooks.o .obj/PortableGroup_Hooks.so .shobj/PortableGroup_Hooks.o .shobj/PortableGroup_Hooks.so: PortableGroup_Hooks.cpp PortableGroup_Hooks.h \ $(ACE_ROOT)/ace/pre.h PortableServerC.h \ @@ -9898,7 +9807,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -9974,7 +9882,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -9992,8 +9899,8 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - PortableServerC.i POA.h \ - $(ACE_ROOT)/ace/SString.h \ + $(TAO_ROOT)/tao/debug.h PortableServerC.i \ + POA.h $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ $(ACE_ROOT)/ace/String_Base_Const.h \ $(ACE_ROOT)/ace/String_Base.i \ @@ -10034,8 +9941,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -10145,6 +10050,8 @@ endif $(TAO_ROOT)/tao/Valuetype/Sequence_T.cpp \ $(TAO_ROOT)/tao/ObjRefTemplate/ObjectReferenceTemplateC.i \ POAManager.i POA_Cached_Policies.h POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp POA.i @@ -10253,7 +10160,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -10326,7 +10232,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -10338,15 +10243,11 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - ImplRepoC.i ImR_LocatorC.i \ - $(TAO_ROOT)/tao/Stub.h \ + $(TAO_ROOT)/tao/debug.h ImplRepoC.i \ + ImR_LocatorC.i $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - $(TAO_ROOT)/tao/PolicyC.h \ - $(TAO_ROOT)/tao/CurrentC.h \ - $(TAO_ROOT)/tao/CurrentC.i \ - $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/MProfile.i \ $(TAO_ROOT)/tao/ORB.h \ $(TAO_ROOT)/tao/ServicesC.h \ @@ -10354,6 +10255,10 @@ endif $(TAO_ROOT)/tao/ObjectIdListC.h \ $(TAO_ROOT)/tao/ObjectIdListC.i \ $(TAO_ROOT)/tao/objectid.h \ + $(TAO_ROOT)/tao/PolicyC.h \ + $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/CurrentC.i \ + $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ @@ -10427,8 +10332,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -10489,10 +10392,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -10616,7 +10519,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -10689,7 +10591,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -10701,7 +10602,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - ImplRepoC.i \ + $(TAO_ROOT)/tao/debug.h ImplRepoC.i \ PortableServer.h \ portableserver_export.h \ PortableServerC.h \ @@ -10758,8 +10659,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -10860,6 +10759,7 @@ endif $(ACE_ROOT)/ace/Managed_Object.cpp \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.h \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.inl \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/TAO_Server_Request.h \ $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/IOPC.h \ @@ -10868,6 +10768,8 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ @@ -11048,9 +10950,6 @@ endif $(ACE_ROOT)/ace/Lock.inl \ $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/PolicyC.h \ - $(TAO_ROOT)/tao/CurrentC.h \ - $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ @@ -11088,18 +10987,31 @@ endif $(TAO_ROOT)/tao/Seq_Out_T.inl \ $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/MProfile.i \ + $(TAO_ROOT)/tao/ORB.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/ServicesC.h \ $(TAO_ROOT)/tao/OctetSeqC.h \ $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/VarOut_T.h \ $(TAO_ROOT)/tao/VarOut_T.inl \ $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/ServicesC.i \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/ObjectIdListC.h \ + $(TAO_ROOT)/tao/ObjectIdListC.i \ + $(TAO_ROOT)/tao/objectid.h \ + $(TAO_ROOT)/tao/PolicyC.h \ + $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/IOP_IORC.h \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11134,15 +11046,12 @@ endif $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -11150,15 +11059,6 @@ endif $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/PolicyC.i \ - $(TAO_ROOT)/tao/MProfile.i \ - $(TAO_ROOT)/tao/ORB.h \ - $(TAO_ROOT)/tao/ServicesC.h \ - $(TAO_ROOT)/tao/ServicesC.i \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/ObjectIdListC.h \ - $(TAO_ROOT)/tao/ObjectIdListC.i \ - $(TAO_ROOT)/tao/objectid.h \ $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ @@ -11186,15 +11086,13 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -11342,7 +11240,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11418,7 +11315,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -11435,6 +11331,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ PortableServerC.i \ Servant_Base.h \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ @@ -11483,8 +11380,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -11585,6 +11480,7 @@ endif $(ACE_ROOT)/ace/Managed_Object.cpp \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.h \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.inl \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/TAO_Server_Request.h \ $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/IOPC.h \ @@ -11593,6 +11489,8 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ @@ -11782,7 +11680,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11855,7 +11752,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -11867,14 +11763,11 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - ImplRepoC.i $(TAO_ROOT)/tao/Stub.h \ + $(TAO_ROOT)/tao/debug.h ImplRepoC.i \ + $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - $(TAO_ROOT)/tao/PolicyC.h \ - $(TAO_ROOT)/tao/CurrentC.h \ - $(TAO_ROOT)/tao/CurrentC.i \ - $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/MProfile.i \ $(TAO_ROOT)/tao/ORB.h \ $(TAO_ROOT)/tao/ServicesC.h \ @@ -11882,6 +11775,10 @@ endif $(TAO_ROOT)/tao/ObjectIdListC.h \ $(TAO_ROOT)/tao/ObjectIdListC.i \ $(TAO_ROOT)/tao/objectid.h \ + $(TAO_ROOT)/tao/PolicyC.h \ + $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/CurrentC.i \ + $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ @@ -11955,8 +11852,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -12017,10 +11912,10 @@ endif $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -12144,7 +12039,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -12217,7 +12111,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -12229,7 +12122,7 @@ endif $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - ImplRepoC.i \ + $(TAO_ROOT)/tao/debug.h ImplRepoC.i \ PortableServer.h \ portableserver_export.h \ PortableServerC.h \ @@ -12284,8 +12177,6 @@ endif $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -12386,6 +12277,7 @@ endif $(ACE_ROOT)/ace/Managed_Object.cpp \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.h \ $(TAO_ROOT)/tao/TAO_Singleton_Manager.inl \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/TAO_Server_Request.h \ $(TAO_ROOT)/tao/Tagged_Profile.h \ $(TAO_ROOT)/tao/IOPC.h \ @@ -12394,6 +12286,8 @@ endif $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/GIOPC.h \ $(TAO_ROOT)/tao/GIOPC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Tagged_Profile.i \ $(TAO_ROOT)/tao/Service_Context.h \ $(TAO_ROOT)/tao/Service_Context.inl \ diff --git a/TAO/tao/RTCORBA/Makefile b/TAO/tao/RTCORBA/Makefile index 7d739f77434..4e00582af68 100644 --- a/TAO/tao/RTCORBA/Makefile +++ b/TAO/tao/RTCORBA/Makefile @@ -205,7 +205,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -281,7 +280,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -300,7 +298,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Priority_Mapping.i Continuous_Priority_Mapping.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Priority_Mapping.i Continuous_Priority_Mapping.i \ $(ACE_ROOT)/ace/Sched_Params.h \ $(ACE_ROOT)/ace/Sched_Params.i @@ -406,7 +405,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -482,7 +480,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -501,7 +498,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Priority_Mapping.i Direct_Priority_Mapping.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Priority_Mapping.i Direct_Priority_Mapping.i \ $(ACE_ROOT)/ace/Sched_Params.h \ $(ACE_ROOT)/ace/Sched_Params.i @@ -607,7 +605,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -683,7 +680,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -702,7 +698,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Priority_Mapping.i Linear_Priority_Mapping.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Priority_Mapping.i Linear_Priority_Mapping.i \ $(ACE_ROOT)/ace/Sched_Params.h \ $(ACE_ROOT)/ace/Sched_Params.i @@ -897,6 +894,23 @@ endif # corba_messaging $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -908,32 +922,14 @@ endif # corba_messaging $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -948,7 +944,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -989,8 +984,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -1045,7 +1038,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ RTCORBAC.i \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/New_Leader_Generator.h \ $(ACE_ROOT)/ace/Task.h \ $(ACE_ROOT)/ace/Task.i \ @@ -1183,7 +1178,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1259,7 +1253,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1278,7 +1271,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Priority_Mapping.i + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Priority_Mapping.i .obj/Priority_Mapping_Manager.o .obj/Priority_Mapping_Manager.so .shobj/Priority_Mapping_Manager.o .shobj/Priority_Mapping_Manager.so: Priority_Mapping_Manager.cpp \ Priority_Mapping_Manager.h \ @@ -1383,7 +1377,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1459,7 +1452,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1478,10 +1470,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Priority_Mapping.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Priority_Mapping.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ Priority_Mapping_Manager.i @@ -1588,7 +1579,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1664,7 +1654,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1683,7 +1672,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Network_Priority_Mapping.i Linear_Network_Priority_Mapping.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Network_Priority_Mapping.i Linear_Network_Priority_Mapping.i \ $(ACE_ROOT)/ace/Sched_Params.h \ $(ACE_ROOT)/ace/Sched_Params.i @@ -1789,7 +1779,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1865,7 +1854,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1884,7 +1872,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Network_Priority_Mapping.i + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Network_Priority_Mapping.i .obj/Network_Priority_Mapping_Manager.o .obj/Network_Priority_Mapping_Manager.so .shobj/Network_Priority_Mapping_Manager.o .shobj/Network_Priority_Mapping_Manager.so: Network_Priority_Mapping_Manager.cpp \ Network_Priority_Mapping_Manager.h \ @@ -1989,7 +1978,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2065,7 +2053,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2084,10 +2071,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Network_Priority_Mapping.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Network_Priority_Mapping.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ Network_Priority_Mapping_Manager.i @@ -2134,7 +2120,6 @@ endif # corba_messaging rtcorba_export.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2234,50 +2219,20 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -2291,12 +2246,40 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2319,11 +2302,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -2381,7 +2366,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2481,50 +2465,20 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -2538,12 +2492,40 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2566,11 +2548,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -2686,7 +2670,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2762,7 +2745,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2781,7 +2763,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i RT_ORB_Loader.h \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + RT_ORB_Loader.h \ $(ACE_ROOT)/ace/Service_Object.h \ $(ACE_ROOT)/ace/Shared_Object.h \ $(ACE_ROOT)/ace/Shared_Object.i \ @@ -2925,7 +2908,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3001,7 +2983,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -3020,7 +3001,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i $(TAO_ROOT)/tao/Stub.h \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ @@ -3055,15 +3037,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -3208,7 +3188,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3284,7 +3263,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -3303,9 +3281,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i RT_Current.i \ Priority_Mapping.h Priority_Mapping.i \ $(TAO_ROOT)/tao/Stub.h \ @@ -3642,7 +3619,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3659,7 +3635,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ @@ -3675,7 +3650,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ $(TAO_ROOT)/tao/Invocation_Endpoint_Selectors.h \ $(TAO_ROOT)/tao/Invocation_Endpoint_Selectors.i \ RT_Invocation_Endpoint_Selectors.i RT_Endpoint_Utils.h RT_Stub.h \ @@ -3714,15 +3689,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -3943,7 +3916,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -3960,7 +3932,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ @@ -3976,7 +3947,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ $(TAO_ROOT)/tao/Invocation_Endpoint_Selectors.h \ $(TAO_ROOT)/tao/Invocation_Endpoint_Selectors.i \ RT_Invocation_Endpoint_Selectors.i \ @@ -4000,15 +3971,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/target_specification.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -4139,7 +4108,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4215,7 +4183,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4234,13 +4201,11 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ $(TAO_ROOT)/tao/Invocation_Endpoint_Selectors.h \ $(TAO_ROOT)/tao/Invocation_Endpoint_Selectors.i \ RT_Invocation_Endpoint_Selectors.i RT_Policy_i.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ @@ -4288,11 +4253,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -4559,7 +4526,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4635,7 +4601,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4654,9 +4619,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i RT_ORB.h \ RT_ORB.i @@ -4761,7 +4725,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4837,7 +4800,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4856,9 +4818,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i RT_ORB.i \ RT_Policy_i.h $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ @@ -4983,6 +4944,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/ORB.i \ Thread_Pool.h \ RTCORBAC.h \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.i \ $(TAO_ROOT)/tao/New_Leader_Generator.h \ @@ -5093,9 +5055,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -5113,9 +5075,6 @@ endif # corba_messaging $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -5133,8 +5092,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -5210,7 +5171,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -5234,8 +5194,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ RT_PolicyFactory.h \ RTCORBAC.h \ @@ -5246,6 +5204,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ RTCORBAC.i \ RT_Policy_i.h RTCORBAC.h \ $(ACE_ROOT)/ace/SString.h \ @@ -5590,9 +5549,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ @@ -5600,9 +5559,6 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -5620,8 +5576,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -5638,7 +5596,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/DynamicC.i \ @@ -5659,10 +5616,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ - RT_PolicyFactory.h + RT_PolicyFactory.h $(TAO_ROOT)/tao/debug.h .obj/RT_PolicyFactory.o .obj/RT_PolicyFactory.so .shobj/RT_PolicyFactory.o .shobj/RT_PolicyFactory.so: RT_PolicyFactory.cpp RT_PolicyFactory.h \ $(ACE_ROOT)/ace/pre.h \ @@ -5728,9 +5683,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -5748,9 +5703,6 @@ endif # corba_messaging $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -5768,8 +5720,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -5845,7 +5799,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -5869,8 +5822,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i RT_Policy_i.h \ RTCORBAC.h $(TAO_ROOT)/tao/TimeBaseC.h \ $(TAO_ROOT)/tao/TimeBaseC.i \ @@ -5878,7 +5829,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i $(ACE_ROOT)/ace/SString.h \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ $(ACE_ROOT)/ace/String_Base_Const.h \ $(ACE_ROOT)/ace/String_Base.i \ @@ -5986,7 +5938,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6062,7 +6013,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -6081,9 +6031,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ @@ -6361,7 +6310,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6395,7 +6343,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -6414,10 +6361,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i Priority_Mapping.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + Priority_Mapping.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ Priority_Mapping_Manager.i Network_Priority_Mapping_Manager.h \ Network_Priority_Mapping.h Network_Priority_Mapping.i \ @@ -6489,10 +6435,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -6701,9 +6647,6 @@ endif # corba_messaging $(ACE_ROOT)/ace/os_include/os_syslog.h \ $(ACE_ROOT)/ace/OS.i \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - $(TAO_ROOT)/tao/PolicyC.h \ - $(TAO_ROOT)/tao/CurrentC.h \ - $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ @@ -6741,18 +6684,31 @@ endif # corba_messaging $(TAO_ROOT)/tao/Seq_Out_T.inl \ $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/MProfile.i \ + $(TAO_ROOT)/tao/ORB.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/ServicesC.h \ $(TAO_ROOT)/tao/OctetSeqC.h \ $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/VarOut_T.h \ $(TAO_ROOT)/tao/VarOut_T.inl \ $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/ServicesC.i \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/ObjectIdListC.h \ + $(TAO_ROOT)/tao/ObjectIdListC.i \ + $(TAO_ROOT)/tao/objectid.h \ + $(TAO_ROOT)/tao/PolicyC.h \ + $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/IOP_IORC.h \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -6787,15 +6743,12 @@ endif # corba_messaging $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -6803,15 +6756,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/PolicyC.i \ - $(TAO_ROOT)/tao/MProfile.i \ - $(TAO_ROOT)/tao/ORB.h \ - $(TAO_ROOT)/tao/ServicesC.h \ - $(TAO_ROOT)/tao/ServicesC.i \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/ObjectIdListC.h \ - $(TAO_ROOT)/tao/ObjectIdListC.i \ - $(TAO_ROOT)/tao/objectid.h \ $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ @@ -6826,9 +6770,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/SString.h \ $(ACE_ROOT)/ace/String_Base.h \ @@ -7107,9 +7050,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/MProfile.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.h \ $(ACE_ROOT)/ace/Recursive_Thread_Mutex.inl \ - $(TAO_ROOT)/tao/PolicyC.h \ - $(TAO_ROOT)/tao/CurrentC.h \ - $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ @@ -7143,18 +7083,31 @@ endif # corba_messaging $(TAO_ROOT)/tao/Seq_Out_T.inl \ $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/MProfile.i \ + $(TAO_ROOT)/tao/ORB.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/ServicesC.h \ $(TAO_ROOT)/tao/OctetSeqC.h \ $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/VarOut_T.h \ $(TAO_ROOT)/tao/VarOut_T.inl \ $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/ServicesC.i \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/ObjectIdListC.h \ + $(TAO_ROOT)/tao/ObjectIdListC.i \ + $(TAO_ROOT)/tao/objectid.h \ + $(TAO_ROOT)/tao/PolicyC.h \ + $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/IOP_IORC.h \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7163,28 +7116,16 @@ endif # corba_messaging $(ACE_ROOT)/ace/Functor_T.cpp \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.i \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.cpp \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/PolicyC.i \ - $(TAO_ROOT)/tao/MProfile.i \ - $(TAO_ROOT)/tao/ORB.h \ - $(TAO_ROOT)/tao/ServicesC.h \ - $(TAO_ROOT)/tao/ServicesC.i \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/ObjectIdListC.h \ - $(TAO_ROOT)/tao/ObjectIdListC.i \ - $(TAO_ROOT)/tao/objectid.h \ $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ @@ -7291,7 +7232,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7367,7 +7307,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -7386,7 +7325,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - RTCORBAC.i \ + $(TAO_ROOT)/tao/debug.h RTCORBAC.i \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.i \ $(TAO_ROOT)/tao/New_Leader_Generator.h \ @@ -7518,8 +7458,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ diff --git a/TAO/tao/RTPortableServer/Makefile b/TAO/tao/RTPortableServer/Makefile index ffcdeecd344..2bf6946701b 100644 --- a/TAO/tao/RTPortableServer/Makefile +++ b/TAO/tao/RTPortableServer/Makefile @@ -187,7 +187,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -263,7 +262,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -282,6 +280,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/RTCORBA/RTCORBAC.i \ RTPortableServerC.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.h \ @@ -329,8 +328,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -475,7 +472,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -551,7 +547,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -569,6 +564,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(TAO_ROOT)/tao/RTCORBA/RTCORBAC.h \ $(TAO_ROOT)/tao/RTCORBA/rtcorba_export.h \ @@ -617,13 +613,18 @@ endif # corba_messaging $(ACE_ROOT)/ace/CDR_Base.inl \ $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Acceptor_Filter.i \ + $(TAO_ROOT)/tao/RTCORBA/RTCORBAC.h \ + $(TAO_ROOT)/tao/RTCORBA/rtcorba_export.h \ + $(TAO_ROOT)/tao/VarOut_T.h \ $(ACE_ROOT)/ace/OS_Memory.h \ $(ACE_ROOT)/ace/OS_Errno.h \ $(ACE_ROOT)/ace/os_include/os_errno.h \ $(ACE_ROOT)/ace/OS_Errno.inl \ $(ACE_ROOT)/ace/OS_Memory.inl \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ $(TAO_ROOT)/tao/Seq_Out_T.h \ @@ -638,13 +639,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/Object_KeyC.i \ - $(TAO_ROOT)/tao/Acceptor_Filter.i \ - $(TAO_ROOT)/tao/RTCORBA/RTCORBAC.h \ - $(TAO_ROOT)/tao/RTCORBA/rtcorba_export.h \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/CurrentC.h \ $(TAO_ROOT)/tao/Object.h \ @@ -686,7 +680,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -762,7 +755,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -781,6 +773,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/RTCORBA/RTCORBAC.i \ RT_Acceptor_Filters.i \ $(TAO_ROOT)/tao/Transport_Acceptor.h \ @@ -801,6 +794,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/GIOP_Message_Version.h \ $(TAO_ROOT)/tao/GIOP_Message_Version.inl \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ $(TAO_ROOT)/tao/Profile.i @@ -995,6 +990,23 @@ endif # corba_messaging $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -1006,32 +1018,14 @@ endif # corba_messaging $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1046,7 +1040,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -1087,8 +1080,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -1150,6 +1141,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -1234,6 +1226,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/PortableServer/POAManager.i \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.h \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/PortableServer/POA.i \ $(TAO_ROOT)/tao/RTCORBA/Thread_Pool.h \ $(TAO_ROOT)/tao/RTCORBA/RTCORBAC.h \ @@ -1242,6 +1236,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/TimeBaseC.i \ $(TAO_ROOT)/tao/Encodable.h \ $(TAO_ROOT)/tao/RTCORBA/RTCORBAC.i \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.i \ $(TAO_ROOT)/tao/New_Leader_Generator.h \ @@ -1378,7 +1373,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1454,7 +1448,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1471,6 +1464,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -1511,8 +1505,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -1808,7 +1800,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1839,7 +1830,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ @@ -1853,6 +1843,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -1893,8 +1884,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -2010,6 +1999,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/PortableServer/POAManager.i \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.h \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ @@ -2089,6 +2080,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Policy_Manager.h \ $(TAO_ROOT)/tao/Policy_Manager.i \ $(TAO_ROOT)/tao/RTCORBA/Thread_Pool.h \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.i \ $(TAO_ROOT)/tao/New_Leader_Generator.h \ @@ -2222,7 +2214,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2298,7 +2289,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -2316,12 +2306,11 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.h \ $(TAO_ROOT)/tao/PortableServer/POA_Policies.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PortableServer/POA_Policies.i \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.i \ @@ -2340,6 +2329,7 @@ endif # corba_messaging $(ACE_ROOT)/ace/SString.i \ $(TAO_ROOT)/tao/RTCORBA/RT_Policy_i.i \ $(TAO_ROOT)/tao/RTCORBA/Thread_Pool.h \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.i \ $(TAO_ROOT)/tao/New_Leader_Generator.h \ @@ -2641,7 +2631,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2672,7 +2661,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CurrentC.i \ $(TAO_ROOT)/tao/PolicyC.h \ $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ @@ -2686,6 +2674,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(ACE_ROOT)/ace/Map_T.h \ $(ACE_ROOT)/ace/Pair_T.h \ @@ -2726,8 +2715,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Adapter.h \ $(TAO_ROOT)/tao/Adapter.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(ACE_ROOT)/ace/Service_Config.h \ $(ACE_ROOT)/ace/Unbounded_Set.h \ @@ -2850,12 +2837,15 @@ endif # corba_messaging $(TAO_ROOT)/tao/PortableServer/POAManager.i \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.h \ $(TAO_ROOT)/tao/PortableServer/POA_Cached_Policies.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(ACE_ROOT)/ace/Array_Base.h \ $(ACE_ROOT)/ace/Array_Base.inl \ $(ACE_ROOT)/ace/Array_Base.cpp \ $(TAO_ROOT)/tao/PortableServer/POA.i \ RTPortableServerC.h RTPortableServerC.i RT_POA.i \ $(TAO_ROOT)/tao/RTCORBA/Thread_Pool.h \ + $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.h \ $(TAO_ROOT)/tao/Thread_Lane_Resources.i \ $(TAO_ROOT)/tao/New_Leader_Generator.h \ @@ -2936,10 +2926,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/Service_Context.inl \ $(TAO_ROOT)/tao/TAO_Server_Request.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ diff --git a/TAO/tao/RTScheduling/Makefile b/TAO/tao/RTScheduling/Makefile index 4fa9093a5e5..a332dc4ccd9 100644 --- a/TAO/tao/RTScheduling/Makefile +++ b/TAO/tao/RTScheduling/Makefile @@ -124,7 +124,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/corbafwd.i RTSchedulerC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -224,50 +223,20 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -281,12 +250,40 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -309,11 +306,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -418,7 +417,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/corbafwd.i RTSchedulerC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -518,50 +516,20 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -575,12 +543,40 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -603,11 +599,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -655,10 +653,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -870,9 +868,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ @@ -880,9 +878,6 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -900,8 +895,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -918,7 +915,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/DynamicC.i \ @@ -939,9 +935,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/ORB_Core.h \ $(TAO_ROOT)/tao/Resource_Factory.h \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -1082,9 +1077,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -1102,9 +1097,6 @@ endif # corba_messaging $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -1122,8 +1114,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1199,7 +1193,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -1223,14 +1216,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/PolicyC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ Request_Interceptor.h RTScheduler.h RTSchedulerC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -1257,6 +1249,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ @@ -1475,7 +1469,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/corbafwd.i RTSchedulerC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1575,50 +1568,20 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -1632,12 +1595,40 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1660,11 +1651,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1901,7 +1894,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/corbafwd.i RTSchedulerC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Unbounded_Queue.h \ $(ACE_ROOT)/ace/Node.h \ $(ACE_ROOT)/ace/Node.cpp \ @@ -1927,50 +1919,20 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -1984,12 +1946,40 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2012,11 +2002,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -2275,9 +2267,9 @@ endif # corba_messaging $(TAO_ROOT)/tao/StringSeqC.h \ $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PI_ForwardC.i \ - $(TAO_ROOT)/tao/DynamicC.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/OS_String.h \ @@ -2295,9 +2287,6 @@ endif # corba_messaging $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ @@ -2315,8 +2304,10 @@ endif # corba_messaging $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/DynamicC.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2392,7 +2383,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ $(ACE_ROOT)/ace/Auto_Ptr.h \ @@ -2420,6 +2410,7 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -2432,8 +2423,6 @@ endif # corba_messaging $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2450,6 +2439,8 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ @@ -2634,7 +2625,6 @@ endif # corba_messaging RTSchedulerC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -2734,50 +2724,20 @@ endif # corba_messaging $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -2791,12 +2751,40 @@ endif # corba_messaging $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -2819,11 +2807,13 @@ endif # corba_messaging $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ diff --git a/TAO/tao/Strategies/Makefile b/TAO/tao/Strategies/Makefile index 93660c9c10c..7290d614ea8 100644 --- a/TAO/tao/Strategies/Makefile +++ b/TAO/tao/Strategies/Makefile @@ -371,14 +371,10 @@ endif $(TAO_ROOT)/tao/Connection_Handler.inl \ DIOP_Transport.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -395,6 +391,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -474,6 +472,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -487,25 +494,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -543,8 +541,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -645,10 +641,6 @@ endif $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -658,10 +650,9 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -737,7 +728,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -746,6 +736,10 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -921,6 +915,7 @@ endif $(ACE_ROOT)/ace/Framework_Component_T.cpp \ $(ACE_ROOT)/ace/Thread_Manager.i \ $(TAO_ROOT)/tao/ORB_Core.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/iiop_endpoints.h \ $(TAO_ROOT)/tao/iiop_endpoints.i @@ -962,16 +957,10 @@ endif $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -1013,6 +1002,7 @@ endif $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -1073,6 +1063,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -1083,6 +1075,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -1291,6 +1284,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -1304,25 +1306,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -1360,8 +1353,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -1376,6 +1367,8 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/Tagged_Components.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ $(TAO_ROOT)/tao/Profile.i DIOP_Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.h \ @@ -1412,6 +1405,7 @@ endif $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ $(TAO_ROOT)/tao/Stub.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Resume_Handle.h \ $(TAO_ROOT)/tao/Resume_Handle.inl \ $(TAO_ROOT)/tao/GIOP_Message_Base.h \ @@ -1702,12 +1696,10 @@ endif $(TAO_ROOT)/tao/Connection_Handler.inl \ DIOP_Transport.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -1803,6 +1795,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -1816,18 +1817,10 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ @@ -1871,8 +1864,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -1899,6 +1890,8 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/Tagged_Components.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ $(TAO_ROOT)/tao/Profile.i DIOP_Endpoint.h \ DIOP_Endpoint.i DIOP_Profile.i @@ -2168,14 +2161,10 @@ endif $(TAO_ROOT)/tao/Connection_Handler.inl \ DIOP_Transport.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -2192,6 +2181,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -2271,6 +2262,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -2284,25 +2284,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -2340,8 +2331,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -2356,12 +2345,15 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/Tagged_Components.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ $(TAO_ROOT)/tao/Profile.i DIOP_Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.i DIOP_Endpoint.i \ DIOP_Profile.i $(TAO_ROOT)/tao/MProfile.h \ $(TAO_ROOT)/tao/MProfile.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Protocols_Hooks.h \ $(TAO_ROOT)/tao/Codeset_Manager.h @@ -2627,14 +2619,10 @@ endif $(TAO_ROOT)/tao/Connection_Handler.inl \ DIOP_Transport.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -2651,6 +2639,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -2732,6 +2722,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -2745,18 +2744,10 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ @@ -2800,8 +2791,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -3095,14 +3084,10 @@ endif $(TAO_ROOT)/tao/Connection_Handler.inl \ DIOP_Transport.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -3117,6 +3102,8 @@ endif $(TAO_ROOT)/tao/Seq_Out_T.inl \ $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Sequence.h \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -3503,14 +3490,10 @@ endif $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -3527,6 +3510,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -3557,6 +3542,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -3570,25 +3564,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -3626,8 +3611,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -3973,14 +3956,10 @@ endif $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -3997,6 +3976,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -4027,6 +4008,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -4040,25 +4030,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -4096,8 +4077,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -4212,10 +4191,6 @@ endif $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -4225,10 +4200,9 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -4304,7 +4278,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -4313,6 +4286,10 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -4517,10 +4494,10 @@ endif $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -4584,7 +4561,8 @@ endif $(TAO_ROOT)/tao/LocalObject.h \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ - $(TAO_ROOT)/tao/ORB_Core.i uiop_endpoints.h \ + $(TAO_ROOT)/tao/ORB_Core.i \ + $(TAO_ROOT)/tao/debug.h uiop_endpoints.h \ uiop_endpoints.i .obj/UIOP_Transport.o .obj/UIOP_Transport.so .shobj/UIOP_Transport.o .shobj/UIOP_Transport.so: UIOP_Transport.cpp UIOP_Transport.h \ @@ -4875,14 +4853,10 @@ endif $(ACE_ROOT)/ace/Dynamic.h \ $(ACE_ROOT)/ace/Dynamic.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ @@ -4907,6 +4881,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -4951,10 +4927,6 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/IOPC.h \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -4964,22 +4936,26 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -5064,6 +5040,7 @@ endif $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/GIOP_Message_Base.h \ $(TAO_ROOT)/tao/Pluggable_Messaging.h \ $(TAO_ROOT)/tao/Pluggable_Messaging.i \ @@ -5414,12 +5391,10 @@ endif $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -5463,10 +5438,6 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/IOPC.h \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -5476,22 +5447,26 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Tagged_Components.i \ @@ -5504,7 +5479,8 @@ endif $(TAO_ROOT)/tao/Profile.i UIOP_Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.i UIOP_Endpoint.i \ - UIOP_Profile.i $(TAO_ROOT)/tao/ORB_Core.h \ + UIOP_Profile.i $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/ORB_Core.h \ $(TAO_ROOT)/tao/params.h \ $(TAO_ROOT)/tao/objectid.h \ $(TAO_ROOT)/tao/params.i \ @@ -5890,14 +5866,10 @@ endif $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -5914,6 +5886,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -5944,6 +5918,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -5957,25 +5940,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -6013,8 +5987,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -6028,12 +6000,15 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/Tagged_Components.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ $(TAO_ROOT)/tao/Profile.i UIOP_Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.i UIOP_Endpoint.i \ UIOP_Profile.i $(TAO_ROOT)/tao/MProfile.h \ $(TAO_ROOT)/tao/MProfile.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Protocols_Hooks.h \ $(TAO_ROOT)/tao/Codeset_Manager.h @@ -6355,14 +6330,10 @@ endif $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -6379,6 +6350,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -6409,6 +6382,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -6422,18 +6404,10 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ @@ -6477,8 +6451,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ @@ -6831,14 +6803,10 @@ endif $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -6855,6 +6823,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -7278,10 +7248,6 @@ endif $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -7291,10 +7257,9 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7370,7 +7335,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -7379,6 +7343,10 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -7430,16 +7398,10 @@ endif $(ACE_ROOT)/ace/Lock.inl \ $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -7481,6 +7443,7 @@ endif $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -7541,6 +7504,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -7551,6 +7516,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -7731,10 +7697,6 @@ endif $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -7744,10 +7706,9 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -7769,7 +7730,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -7778,6 +7738,10 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -7894,45 +7858,7 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8001,19 +7927,32 @@ endif $(ACE_ROOT)/ace/Thread_Mutex.h \ $(ACE_ROOT)/ace/Thread_Mutex.inl \ $(TAO_ROOT)/tao/Exception.h \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/TimeBaseC.i \ $(ACE_ROOT)/ace/Reactor.h \ $(ACE_ROOT)/ace/Handle_Set.h \ @@ -8438,14 +8377,10 @@ endif $(ACE_ROOT)/ace/INET_Addr.i \ $(ACE_ROOT)/ace/MEM_Stream.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -8462,6 +8397,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -8492,6 +8429,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -8505,25 +8451,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -8561,8 +8498,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -8690,10 +8625,6 @@ endif $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -8703,10 +8634,9 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -8782,7 +8712,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -8791,6 +8720,10 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -8968,6 +8901,7 @@ endif $(ACE_ROOT)/ace/Framework_Component_T.cpp \ $(ACE_ROOT)/ace/Thread_Manager.i \ $(TAO_ROOT)/tao/ORB_Core.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/iiop_endpoints.h \ $(TAO_ROOT)/tao/iiop_endpoints.i @@ -9243,14 +9177,10 @@ endif $(ACE_ROOT)/ace/INET_Addr.i \ $(ACE_ROOT)/ace/MEM_Stream.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ @@ -9275,6 +9205,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -9322,10 +9254,6 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/IOPC.h \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -9335,22 +9263,26 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/CONV_FRAMEC.h \ @@ -9466,6 +9398,7 @@ endif $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(TAO_ROOT)/tao/ORB_Core.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Resume_Handle.h \ $(TAO_ROOT)/tao/Resume_Handle.inl \ $(TAO_ROOT)/tao/GIOP_Message_Base.h \ @@ -9811,12 +9744,10 @@ endif $(TAO_ROOT)/tao/Connection_Handler.inl \ SHMIOP_Transport.h strategies_export.h \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -9860,10 +9791,6 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/IOPC.h \ $(TAO_ROOT)/tao/IOP_CodecC.h \ - $(TAO_ROOT)/tao/Any_Impl_T.h \ - $(TAO_ROOT)/tao/Any.h \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ @@ -9873,22 +9800,26 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/Object.i \ + $(TAO_ROOT)/tao/Any_Impl_T.h \ + $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/IOP_CodecC.i \ $(TAO_ROOT)/tao/IOPC.i \ $(TAO_ROOT)/tao/Tagged_Components.i \ @@ -9932,6 +9863,7 @@ endif $(ACE_ROOT)/ace/Condition_T.cpp \ $(ACE_ROOT)/ace/Synch_T.i \ $(ACE_ROOT)/ace/Synch_T.cpp SHMIOP_Profile.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Base_Transport_Property.h \ $(TAO_ROOT)/tao/Base_Transport_Property.inl \ $(TAO_ROOT)/tao/ORB_Core.h \ @@ -10306,14 +10238,10 @@ endif $(ACE_ROOT)/ace/INET_Addr.i \ $(ACE_ROOT)/ace/MEM_Stream.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -10330,6 +10258,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -10360,6 +10290,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -10373,25 +10312,16 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -10429,8 +10359,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -10459,6 +10387,8 @@ endif $(TAO_ROOT)/tao/Tagged_Components.h \ $(TAO_ROOT)/tao/Tagged_Components.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ $(TAO_ROOT)/tao/Profile.i SHMIOP_Endpoint.h \ $(TAO_ROOT)/tao/Endpoint.h \ @@ -10493,6 +10423,7 @@ endif $(ACE_ROOT)/ace/Synch_T.cpp SHMIOP_Profile.i \ $(TAO_ROOT)/tao/MProfile.h \ $(TAO_ROOT)/tao/MProfile.i \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Codeset_Manager.h .obj/SHMIOP_Connection_Handler.o .obj/SHMIOP_Connection_Handler.so .shobj/SHMIOP_Connection_Handler.o .shobj/SHMIOP_Connection_Handler.so: SHMIOP_Connection_Handler.cpp \ @@ -10801,14 +10732,10 @@ endif $(ACE_ROOT)/ace/INET_Addr.i \ $(ACE_ROOT)/ace/MEM_Stream.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -10825,6 +10752,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -10855,6 +10784,15 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -10868,18 +10806,10 @@ endif $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ @@ -10923,8 +10853,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Lock_Adapter_T.h \ @@ -11262,14 +11190,10 @@ endif $(ACE_ROOT)/ace/MEM_IO.i \ $(ACE_ROOT)/ace/MEM_Stream.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.inl \ $(TAO_ROOT)/tao/Transport_Timer.h \ @@ -11284,6 +11208,8 @@ endif $(TAO_ROOT)/tao/Seq_Out_T.inl \ $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Sequence.h \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -11373,36 +11299,7 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11472,6 +11369,9 @@ endif $(ACE_ROOT)/ace/Thread_Mutex.inl \ $(TAO_ROOT)/tao/Exception.h \ $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i uiop_endpoints.i @@ -11547,7 +11447,6 @@ endif $(ACE_ROOT)/ace/CDR_Stream.i \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11811,6 +11710,23 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -11822,32 +11738,14 @@ endif $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -11862,7 +11760,6 @@ endif $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -11903,8 +11800,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -11958,6 +11853,7 @@ endif $(TAO_ROOT)/tao/LF_Strategy.h \ $(TAO_ROOT)/tao/LF_Strategy.inl \ LF_Strategy_Null.inl \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/LRU_Connection_Purging_Strategy.h \ $(TAO_ROOT)/tao/LF_Strategy_Complete.h \ $(TAO_ROOT)/tao/LF_Strategy_Complete.inl \ @@ -12057,16 +11953,10 @@ endif $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -12108,6 +11998,7 @@ endif $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -12168,6 +12059,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -12178,6 +12071,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -12231,16 +12125,10 @@ endif $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -12282,6 +12170,7 @@ endif $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -12342,6 +12231,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -12352,6 +12243,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ @@ -12405,16 +12297,10 @@ endif $(ACE_ROOT)/ace/Lock.h \ $(ACE_ROOT)/ace/Lock.inl \ $(TAO_ROOT)/tao/corbafwd.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(ACE_ROOT)/ace/CORBA_macros.h \ - $(ACE_ROOT)/ace/Exception_Macros.h \ - $(ACE_ROOT)/ace/SStringfwd.h \ - $(ACE_ROOT)/ace/iosfwd.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -12456,6 +12342,7 @@ endif $(ACE_ROOT)/ace/os_include/os_assert.h \ $(ACE_ROOT)/ace/os_include/os_fcntl.h \ $(ACE_ROOT)/ace/os_include/sys/os_stat.h \ + $(ACE_ROOT)/ace/iosfwd.h \ $(ACE_ROOT)/ace/os_include/arpa/os_inet.h \ $(ACE_ROOT)/ace/os_include/netinet/os_tcp.h \ $(ACE_ROOT)/ace/os_include/sys/os_shm.h \ @@ -12516,6 +12403,8 @@ endif $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ $(TAO_ROOT)/tao/Managed_Types.i \ + $(ACE_ROOT)/ace/CORBA_macros.h \ + $(ACE_ROOT)/ace/Exception_Macros.h \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ @@ -12526,6 +12415,7 @@ endif $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/CDR.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ + $(ACE_ROOT)/ace/SStringfwd.h \ $(ACE_ROOT)/ace/Message_Block.h \ $(ACE_ROOT)/ace/Message_Block.i \ $(ACE_ROOT)/ace/Message_Block_T.h \ diff --git a/TAO/tao/TimeBaseC.h b/TAO/tao/TimeBaseC.h index ecdacbd4858..96d0c19fcd8 100644 --- a/TAO/tao/TimeBaseC.h +++ b/TAO/tao/TimeBaseC.h @@ -33,6 +33,7 @@ #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "tao/VarOut_T.h" +#include "tao/CDR.h" #if defined (TAO_EXPORT_MACRO) #undef TAO_EXPORT_MACRO @@ -62,104 +63,104 @@ TAO_NAMESPACE TimeBase { - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typedef/typedef_ch.cpp:333 - + typedef CORBA::ULongLong TimeT; typedef CORBA::ULongLong_out TimeT_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_TimeT; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typedef/typedef_ch.cpp:333 - + typedef TimeT InaccuracyT; typedef TimeT_out InaccuracyT_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_InaccuracyT; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typedef/typedef_ch.cpp:333 - + typedef CORBA::Short TdfT; typedef CORBA::Short_out TdfT_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_TdfT; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_type.cpp:231 - + struct UtcT; - + typedef TAO_Fixed_Var_T< UtcT > UtcT_var; - + typedef UtcT & UtcT_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_structure/structure_ch.cpp:52 - + struct TAO_Export UtcT { typedef UtcT_var _var_type; - + static void _tao_any_destructor (void *); TimeBase::TimeT time; CORBA::ULong inacclo; CORBA::UShort inacchi; TimeBase::TdfT tdf; }; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_UtcT; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_type.cpp:231 - + struct IntervalT; - + typedef TAO_Fixed_Var_T< IntervalT > IntervalT_var; - + typedef IntervalT & IntervalT_out; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_structure/structure_ch.cpp:52 - + struct TAO_Export IntervalT { typedef IntervalT_var _var_type; - + static void _tao_any_destructor (void *); TimeBase::TimeT lower_bound; TimeBase::TimeT upper_bound; }; - + // TAO_IDL - Generated from // W:\ACE_wrappers\TAO\TAO_IDL\be\be_visitor_typecode/typecode_decl.cpp:44 - + TAO_NAMESPACE_STORAGE_CLASS ::CORBA::TypeCode_ptr _tc_IntervalT; // TAO_IDL - Generated from @@ -223,4 +224,3 @@ TAO_Export CORBA::Boolean operator>> (TAO_InputCDR &, TimeBase::IntervalT &); #include /**/ "ace/post.h" #endif /* ifndef */ - diff --git a/TAO/tao/Transport.h b/TAO/tao/Transport.h index 851f0ba5736..ceda38d2d8e 100644 --- a/TAO/tao/Transport.h +++ b/TAO/tao/Transport.h @@ -1,4 +1,4 @@ -// This may look like C, but it's really -*- C++ -*- +// -*- C++ -*- //============================================================================= /** @@ -15,6 +15,7 @@ #ifndef TAO_TRANSPORT_H #define TAO_TRANSPORT_H + #include /**/ "ace/pre.h" #include "corbafwd.h" @@ -23,8 +24,6 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "Exception.h" -#include "Transport_Descriptor_Interface.h" #include "Transport_Cache_Manager.h" #include "Transport_Timer.h" #include "Incoming_Message_Queue.h" @@ -916,6 +915,7 @@ private: /// translators are correct, since a null translator is valid if both ends /// are using the same codeset, whatever that codeset might be. CORBA::Boolean tcs_set_; + /// First_request_ is true until the first request is sent or received. This /// is necessary since codeset context information is necessary only on the /// first request. After that, the translators are fixed for the life of the @@ -943,4 +943,5 @@ private: #endif /* __ACE_INLINE__ */ #include /**/ "ace/post.h" + #endif /* TAO_TRANSPORT_H */ diff --git a/TAO/tao/Transport_Mux_Strategy.cpp b/TAO/tao/Transport_Mux_Strategy.cpp index bf499cf1cd9..59d5a5cecbe 100644 --- a/TAO/tao/Transport_Mux_Strategy.cpp +++ b/TAO/tao/Transport_Mux_Strategy.cpp @@ -1,13 +1,16 @@ // $Id$ #include "tao/Transport_Mux_Strategy.h" -#include "tao/Reply_Dispatcher.h" -ACE_RCSID(tao, Transport_Mut_Strategy, "$Id$") +ACE_RCSID (tao, + Transport_Mux_Strategy, + "$Id$") -TAO_Transport_Mux_Strategy::TAO_Transport_Mux_Strategy (TAO_Transport *transport) + +TAO_Transport_Mux_Strategy::TAO_Transport_Mux_Strategy ( + TAO_Transport *transport) : transport_ (transport) - , lock_ (0) + , lock_ (0) { } diff --git a/TAO/tao/Transport_Mux_Strategy.h b/TAO/tao/Transport_Mux_Strategy.h index c1bb2956def..50be85c17b7 100644 --- a/TAO/tao/Transport_Mux_Strategy.h +++ b/TAO/tao/Transport_Mux_Strategy.h @@ -1,4 +1,4 @@ -// This may look like C, but it's really -*- C++ -*- +// -*- C++ -*- //============================================================================= /** @@ -13,9 +13,10 @@ #ifndef TAO_TRANSPORT_MUX_STRATEGY_H #define TAO_TRANSPORT_MUX_STRATEGY_H + #include /**/ "ace/pre.h" -#include "tao/IOPC.h" +#include "tao/corbafwd.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once @@ -89,4 +90,5 @@ protected: }; #include /**/ "ace/post.h" -#endif /* TRANSPORT_MUX_STRATEGY_H */ + +#endif /* TRANSPORT_MUX_STRATEGY_H */ diff --git a/TAO/tao/TypeCodeFactory/Makefile b/TAO/tao/TypeCodeFactory/Makefile index 67955650090..f7dd6b06b97 100644 --- a/TAO/tao/TypeCodeFactory/Makefile +++ b/TAO/tao/TypeCodeFactory/Makefile @@ -110,7 +110,6 @@ realclean: clean $(TAO_ROOT)/tao/TAO_Export.h \ $(TAO_ROOT)/tao/corbafwd.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -210,50 +209,20 @@ realclean: clean $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ - $(TAO_ROOT)/tao/Sequence.i \ - $(TAO_ROOT)/tao/Sequence_T.h \ - $(TAO_ROOT)/tao/Sequence_T.i \ - $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ @@ -267,12 +236,40 @@ realclean: clean $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/NVList.h \ $(TAO_ROOT)/tao/NVList.i \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/Policy_ForwardC.h \ + $(TAO_ROOT)/tao/Sequence.h \ + $(TAO_ROOT)/tao/Sequence.i \ + $(TAO_ROOT)/tao/Sequence_T.h \ + $(TAO_ROOT)/tao/Sequence_T.i \ + $(TAO_ROOT)/tao/Sequence_T.cpp \ + $(TAO_ROOT)/tao/Objref_VarOut_T.h \ + $(TAO_ROOT)/tao/varbase.h \ + $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ + $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/Policy_ForwardC.i \ + $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/VarOut_T.h \ + $(TAO_ROOT)/tao/VarOut_T.inl \ + $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/IOP_IORC.i \ + $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -295,11 +292,13 @@ realclean: clean $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -344,10 +343,10 @@ realclean: clean $(TAO_ROOT)/tao/target_specification.i \ $(TAO_ROOT)/tao/operation_details.i \ $(TAO_ROOT)/tao/Transport.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ - $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(TAO_ROOT)/tao/Transport_Cache_Manager.h \ $(TAO_ROOT)/tao/Cache_Entries.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.h \ + $(TAO_ROOT)/tao/Transport_Descriptor_Interface.inl \ $(ACE_ROOT)/ace/Recyclable.h \ $(ACE_ROOT)/ace/Recyclable.inl \ $(TAO_ROOT)/tao/Cache_Entries.inl \ @@ -547,7 +546,6 @@ realclean: clean $(TAO_ROOT)/tao/IFR_Client/IFR_ExtendedC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -569,23 +567,48 @@ realclean: clean $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -601,34 +624,7 @@ realclean: clean $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -651,11 +647,13 @@ realclean: clean $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -853,7 +851,6 @@ realclean: clean $(TAO_ROOT)/tao/IFR_Client/IFR_ExtendedC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -875,23 +872,48 @@ realclean: clean $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -907,34 +929,7 @@ realclean: clean $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -957,11 +952,13 @@ realclean: clean $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ @@ -1220,7 +1217,6 @@ realclean: clean $(TAO_ROOT)/tao/IFR_Client/IFR_ExtendedC.h \ $(TAO_ROOT)/tao/corba.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1242,23 +1238,48 @@ realclean: clean $(ACE_ROOT)/ace/Message_Block_T.i \ $(ACE_ROOT)/ace/Message_Block_T.cpp \ $(ACE_ROOT)/ace/CDR_Stream.i \ + $(TAO_ROOT)/tao/Any.i \ + $(TAO_ROOT)/tao/Any_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Impl_T.cpp \ + $(TAO_ROOT)/tao/Marshal.h \ + $(TAO_ROOT)/tao/Marshal.i \ + $(TAO_ROOT)/tao/CDR.h \ + $(TAO_ROOT)/tao/CDR.i \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ + $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/Managed_Types.h \ + $(TAO_ROOT)/tao/Managed_Types.i \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/Environment.h \ + $(TAO_ROOT)/tao/Environment.i \ + $(TAO_ROOT)/tao/NVList.h \ + $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ - $(TAO_ROOT)/tao/Managed_Types.h \ - $(TAO_ROOT)/tao/Managed_Types.i \ $(TAO_ROOT)/tao/Sequence.i \ $(TAO_ROOT)/tao/Sequence_T.h \ $(TAO_ROOT)/tao/Sequence_T.i \ $(TAO_ROOT)/tao/Sequence_T.cpp \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ $(TAO_ROOT)/tao/varbase.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Environment.i \ $(TAO_ROOT)/tao/Seq_Var_T.h \ $(TAO_ROOT)/tao/Seq_Var_T.inl \ $(TAO_ROOT)/tao/Seq_Var_T.cpp \ @@ -1274,34 +1295,7 @@ realclean: clean $(TAO_ROOT)/tao/VarOut_T.cpp \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/Any_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Impl_T.cpp \ - $(TAO_ROOT)/tao/Marshal.h \ - $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Special_Basic_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Array_Impl_T.cpp \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ - $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/NVList.h \ - $(TAO_ROOT)/tao/NVList.i \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Principal.i \ @@ -1324,11 +1318,13 @@ realclean: clean $(TAO_ROOT)/tao/DomainC.i \ $(TAO_ROOT)/tao/WrongTransactionC.h \ $(TAO_ROOT)/tao/WrongTransactionC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Array_VarOut_T.h \ $(TAO_ROOT)/tao/Array_VarOut_T.inl \ $(TAO_ROOT)/tao/Array_VarOut_T.cpp \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ $(TAO_ROOT)/tao/PortableInterceptorC.h \ $(TAO_ROOT)/tao/PI_ForwardC.h \ $(TAO_ROOT)/tao/PI_ForwardC.i \ diff --git a/TAO/tao/TypeCodeFactory_Adapter.h b/TAO/tao/TypeCodeFactory_Adapter.h index 1f1d4a9d17e..d6cec53635f 100644 --- a/TAO/tao/TypeCodeFactory_Adapter.h +++ b/TAO/tao/TypeCodeFactory_Adapter.h @@ -49,7 +49,7 @@ public: const char *id, const char *name, const CORBA::StructMemberSeq &members - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; @@ -58,7 +58,7 @@ public: const char *name, CORBA::TypeCode_ptr discriminator_type, const CORBA::UnionMemberSeq &members - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; @@ -66,7 +66,7 @@ public: const char *id, const char *name, const CORBA::EnumMemberSeq &members - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; @@ -74,7 +74,7 @@ public: const char *id, const char *name, CORBA::TypeCode_ptr original_type - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; @@ -82,47 +82,47 @@ public: const char *id, const char *name, const CORBA::StructMemberSeq &members - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_interface_tc ( const char *id, const char *name - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_string_tc ( CORBA::ULong bound - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_wstring_tc ( CORBA::ULong bound - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_fixed_tc ( CORBA::UShort digits, CORBA::UShort scale - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_sequence_tc ( CORBA::ULong bound, CORBA::TypeCode_ptr element_type - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_array_tc ( CORBA::ULong length, CORBA::TypeCode_ptr element_type - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; @@ -132,7 +132,7 @@ public: CORBA::ValueModifier type_modifier, CORBA::TypeCode_ptr concrete_base, const CORBA::ValueMemberSeq &members - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; @@ -140,37 +140,38 @@ public: const char *id, const char *name, CORBA::TypeCode_ptr boxed_type - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_native_tc ( const char *id, const char *name - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_recursive_tc ( const char *id - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_abstract_interface_tc ( const char *id, const char *name - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; virtual CORBA::TypeCode_ptr create_local_interface_tc ( const char *id, const char *name - ACE_ENV_ARG_DECL_WITH_DEFAULTS + ACE_ENV_ARG_DECL ) ACE_THROW_SPEC ((CORBA::SystemException)) = 0; }; #include /**/ "ace/post.h" + #endif /* TAO_TYPECODEFACTORY_ADAPTER_H */ diff --git a/TAO/tao/Typecode.cpp b/TAO/tao/Typecode.cpp index 449be42e888..7dfb0616658 100644 --- a/TAO/tao/Typecode.cpp +++ b/TAO/tao/Typecode.cpp @@ -15,6 +15,7 @@ #include "tao/Typecode.h" #include "tao/Environment.h" #include "tao/Any.h" +#include "tao/CDR.h" #include "tao/Exception.h" #include "tao/Marshal.h" #include "tao/CORBA_String.h" diff --git a/TAO/tao/Typecode.h b/TAO/tao/Typecode.h index c1696700f41..d7b97feeb6a 100644 --- a/TAO/tao/Typecode.h +++ b/TAO/tao/Typecode.h @@ -19,7 +19,7 @@ #include /**/ "ace/pre.h" -#include "ace/Hash_Map_Manager.h" +#include "ace/Hash_Map_Manager_T.h" #include "ace/Unbounded_Queue.h" #include "ace/Thread_Mutex.h" diff --git a/TAO/tao/Utils/Makefile b/TAO/tao/Utils/Makefile index 202284c60fc..d863ea77f73 100644 --- a/TAO/tao/Utils/Makefile +++ b/TAO/tao/Utils/Makefile @@ -169,7 +169,6 @@ CPPFLAGS += -I$(TAO_ROOT) $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -242,7 +241,6 @@ CPPFLAGS += -I$(TAO_ROOT) $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -356,7 +354,6 @@ CPPFLAGS += -I$(TAO_ROOT) $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -432,7 +429,6 @@ CPPFLAGS += -I$(TAO_ROOT) $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -449,6 +445,7 @@ CPPFLAGS += -I$(TAO_ROOT) $(TAO_ROOT)/tao/Any_Basic_Impl_T.h \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Basic_Impl_T.cpp \ + $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/PortableServer/PortableServerC.i \ $(TAO_ROOT)/tao/PortableServer/Servant_Base.h \ $(TAO_ROOT)/tao/Abstract_Servant_Base.h \ @@ -560,7 +557,6 @@ CPPFLAGS += -I$(TAO_ROOT) $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -636,7 +632,6 @@ CPPFLAGS += -I$(TAO_ROOT) $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ diff --git a/TAO/tao/Valuetype/Makefile b/TAO/tao/Valuetype/Makefile index 637968faf90..4279102ad5f 100644 --- a/TAO/tao/Valuetype/Makefile +++ b/TAO/tao/Valuetype/Makefile @@ -274,7 +274,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -306,7 +305,6 @@ endif $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -386,8 +384,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -417,7 +413,7 @@ endif $(ACE_ROOT)/ace/Framework_Component_T.cpp \ $(ACE_ROOT)/ace/Thread_Manager.i \ $(TAO_ROOT)/tao/ORB_Core.i ValueFactory.h \ - ValueFactory.inl + ValueFactory.inl $(TAO_ROOT)/tao/debug.h .obj/Valuetype_Adapter_Impl.o .obj/Valuetype_Adapter_Impl.so .shobj/Valuetype_Adapter_Impl.o .shobj/Valuetype_Adapter_Impl.so: Valuetype_Adapter_Impl.cpp \ Valuetype_Adapter_Impl.h $(ACE_ROOT)/ace/pre.h \ @@ -683,6 +679,23 @@ endif $(TAO_ROOT)/tao/CORBA_String.inl \ $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/Adapter.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Adapter.i \ + $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ + $(TAO_ROOT)/tao/PortableInterceptorC.h \ + $(TAO_ROOT)/tao/PI_ForwardC.h \ + $(TAO_ROOT)/tao/OctetSeqC.h \ + $(TAO_ROOT)/tao/Seq_Var_T.h \ + $(TAO_ROOT)/tao/Seq_Var_T.inl \ + $(TAO_ROOT)/tao/Seq_Var_T.cpp \ + $(TAO_ROOT)/tao/Seq_Out_T.h \ + $(TAO_ROOT)/tao/Seq_Out_T.inl \ + $(TAO_ROOT)/tao/Seq_Out_T.cpp \ + $(TAO_ROOT)/tao/OctetSeqC.i \ + $(TAO_ROOT)/tao/StringSeqC.h \ + $(TAO_ROOT)/tao/StringSeqC.i \ + $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Objref_VarOut_T.h \ @@ -691,39 +704,20 @@ endif $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ $(TAO_ROOT)/tao/Environment.h \ $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ - $(TAO_ROOT)/tao/Adapter.i \ - $(TAO_ROOT)/tao/PolicyFactory_Registry.h \ - $(TAO_ROOT)/tao/PortableInterceptorC.h \ - $(TAO_ROOT)/tao/PI_ForwardC.h \ - $(TAO_ROOT)/tao/StringSeqC.h \ - $(TAO_ROOT)/tao/StringSeqC.i \ - $(TAO_ROOT)/tao/PI_ForwardC.i \ $(TAO_ROOT)/tao/DynamicC.h \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Dual_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/DynamicC.i \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.h \ $(TAO_ROOT)/tao/Messaging_SyncScopeC.i \ @@ -764,8 +758,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -942,9 +934,6 @@ endif ValueFactory.h ValueFactory.inl \ $(TAO_ROOT)/tao/Stub.h \ $(TAO_ROOT)/tao/MProfile.h \ - $(TAO_ROOT)/tao/PolicyC.h \ - $(TAO_ROOT)/tao/CurrentC.h \ - $(TAO_ROOT)/tao/Object.h \ $(TAO_ROOT)/tao/Policy_ForwardC.h \ $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ @@ -977,18 +966,31 @@ endif $(TAO_ROOT)/tao/Seq_Out_T.inl \ $(TAO_ROOT)/tao/Seq_Out_T.cpp \ $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ + $(TAO_ROOT)/tao/MProfile.i \ + $(TAO_ROOT)/tao/ORB.h \ + $(TAO_ROOT)/tao/Exception.h \ + $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/ServicesC.h \ $(TAO_ROOT)/tao/OctetSeqC.h \ $(TAO_ROOT)/tao/OctetSeqC.i \ $(TAO_ROOT)/tao/VarOut_T.h \ $(TAO_ROOT)/tao/VarOut_T.inl \ $(TAO_ROOT)/tao/VarOut_T.cpp \ + $(TAO_ROOT)/tao/ServicesC.i \ + $(TAO_ROOT)/tao/CORBA_String.h \ + $(TAO_ROOT)/tao/CORBA_String.inl \ + $(TAO_ROOT)/tao/ObjectIdListC.h \ + $(TAO_ROOT)/tao/ObjectIdListC.i \ + $(TAO_ROOT)/tao/objectid.h \ + $(TAO_ROOT)/tao/PolicyC.h \ + $(TAO_ROOT)/tao/CurrentC.h \ + $(TAO_ROOT)/tao/Object.h \ + $(TAO_ROOT)/tao/IOP_IORC.h \ $(TAO_ROOT)/tao/IOP_IORC.i \ $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Any_Impl_T.h \ $(TAO_ROOT)/tao/Any.h \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1014,15 +1016,12 @@ endif $(ACE_ROOT)/ace/Node.cpp \ $(ACE_ROOT)/ace/Unbounded_Queue.inl \ $(ACE_ROOT)/ace/Unbounded_Queue.cpp \ - $(TAO_ROOT)/tao/Exception.h \ - $(TAO_ROOT)/tao/Exception.i \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i \ $(TAO_ROOT)/tao/Any_Impl_T.inl \ $(TAO_ROOT)/tao/Any_Impl_T.cpp \ $(TAO_ROOT)/tao/Marshal.h \ $(TAO_ROOT)/tao/Marshal.i \ - $(TAO_ROOT)/tao/debug.h \ $(ACE_ROOT)/ace/Auto_Ptr.h \ $(ACE_ROOT)/ace/Auto_Ptr.i \ $(ACE_ROOT)/ace/Auto_Ptr.cpp \ @@ -1030,15 +1029,6 @@ endif $(TAO_ROOT)/tao/Remote_Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/Object_Proxy_Impl.h \ $(TAO_ROOT)/tao/PolicyC.i \ - $(TAO_ROOT)/tao/MProfile.i \ - $(TAO_ROOT)/tao/ORB.h \ - $(TAO_ROOT)/tao/ServicesC.h \ - $(TAO_ROOT)/tao/ServicesC.i \ - $(TAO_ROOT)/tao/CORBA_String.h \ - $(TAO_ROOT)/tao/CORBA_String.inl \ - $(TAO_ROOT)/tao/ObjectIdListC.h \ - $(TAO_ROOT)/tao/ObjectIdListC.i \ - $(TAO_ROOT)/tao/objectid.h \ $(TAO_ROOT)/tao/ORB.i \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.h \ $(TAO_ROOT)/tao/ORB_Core_Auto_Ptr.inl \ @@ -1114,8 +1104,6 @@ endif $(TAO_ROOT)/tao/Interceptor_List.inl \ $(TAO_ROOT)/tao/PICurrent.h \ $(TAO_ROOT)/tao/LocalObject.h \ - $(TAO_ROOT)/tao/Object_KeyC.h \ - $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/LocalObject.i \ $(TAO_ROOT)/tao/PICurrent.inl \ $(ACE_ROOT)/ace/Thread_Manager.h \ @@ -1151,8 +1139,11 @@ endif $(TAO_ROOT)/tao/GIOP_Message_Version.h \ $(TAO_ROOT)/tao/GIOP_Message_Version.inl \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.h \ + $(TAO_ROOT)/tao/Object_KeyC.h \ + $(TAO_ROOT)/tao/Object_KeyC.i \ $(TAO_ROOT)/tao/Refcounted_ObjectKey.inl \ - $(TAO_ROOT)/tao/Profile.i + $(TAO_ROOT)/tao/Profile.i \ + $(TAO_ROOT)/tao/debug.h .obj/ValueFactory.o .obj/ValueFactory.so .shobj/ValueFactory.o .shobj/ValueFactory.so: ValueFactory.cpp ValueFactory.h \ $(ACE_ROOT)/ace/pre.h valuetype_export.h \ @@ -1550,36 +1541,7 @@ endif $(ACE_ROOT)/ace/Malloc_Base.h \ $(ACE_ROOT)/ace/os_include/sys/os_mman.h \ $(ACE_ROOT)/ace/CDR_Stream.i \ - $(TAO_ROOT)/tao/Object.h \ - $(TAO_ROOT)/tao/Policy_ForwardC.h \ - $(TAO_ROOT)/tao/CDR.h \ - $(TAO_ROOT)/tao/CDR.i \ - $(TAO_ROOT)/tao/Objref_VarOut_T.h \ - $(TAO_ROOT)/tao/varbase.h \ - $(TAO_ROOT)/tao/Objref_VarOut_T.inl \ - $(TAO_ROOT)/tao/Objref_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ - $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ - $(TAO_ROOT)/tao/Environment.i \ - $(TAO_ROOT)/tao/Seq_Var_T.h \ - $(TAO_ROOT)/tao/Seq_Var_T.inl \ - $(TAO_ROOT)/tao/Seq_Var_T.cpp \ - $(TAO_ROOT)/tao/Seq_Out_T.h \ - $(TAO_ROOT)/tao/Seq_Out_T.inl \ - $(TAO_ROOT)/tao/Seq_Out_T.cpp \ - $(TAO_ROOT)/tao/Policy_ForwardC.i \ - $(TAO_ROOT)/tao/IOP_IORC.h \ - $(TAO_ROOT)/tao/OctetSeqC.h \ - $(TAO_ROOT)/tao/OctetSeqC.i \ - $(TAO_ROOT)/tao/VarOut_T.h \ - $(TAO_ROOT)/tao/VarOut_T.inl \ - $(TAO_ROOT)/tao/VarOut_T.cpp \ - $(TAO_ROOT)/tao/IOP_IORC.i \ - $(TAO_ROOT)/tao/Object.i \ $(TAO_ROOT)/tao/Typecode.h \ - $(ACE_ROOT)/ace/Hash_Map_Manager.h \ $(ACE_ROOT)/ace/Hash_Map_Manager_T.h \ $(ACE_ROOT)/ace/Functor.h \ $(ACE_ROOT)/ace/Functor.i \ @@ -1649,6 +1611,9 @@ endif $(ACE_ROOT)/ace/Thread_Mutex.inl \ $(TAO_ROOT)/tao/Exception.h \ $(TAO_ROOT)/tao/Exception.i \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.h \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.inl \ + $(TAO_ROOT)/tao/Pseudo_VarOut_T.cpp \ $(TAO_ROOT)/tao/Typecode.i \ $(TAO_ROOT)/tao/Any.i ValueBase.h \ valuetype_export.h Value_VarOut_T.h Value_VarOut_T.inl \ diff --git a/TAO/tao/corbafwd.h b/TAO/tao/corbafwd.h index f5c6d293ce7..d6cede1a2d0 100644 --- a/TAO/tao/corbafwd.h +++ b/TAO/tao/corbafwd.h @@ -84,8 +84,11 @@ namespace TAO_Collocation_Strategies }; } -// forward declare sequences. +// Forward declarations in the global namespace. template <class T> class TAO_Unbounded_Sequence; +template <typename T> class TAO_Pseudo_Var_T; +template <typename T, typename T_var> class TAO_Pseudo_Out_T; + /** * @class CORBA * @@ -217,6 +220,9 @@ namespace CORBA class Object; typedef Object *Object_ptr; + typedef TAO_Pseudo_Var_T<Object> Object_var; + typedef TAO_Pseudo_Out_T<Object, Object_var> Object_out; + class LocalObject; typedef LocalObject *LocalObject_ptr; diff --git a/TAO/tao/target_specification.h b/TAO/tao/target_specification.h index 56e33042f82..85374ca8e00 100644 --- a/TAO/tao/target_specification.h +++ b/TAO/tao/target_specification.h @@ -1,4 +1,4 @@ -//-*- C++ -*- +// -*- C++ -*- //============================================================================= /** @@ -8,8 +8,6 @@ * * A class that encapsulates the target identification details. * - * - * * @author Balachandran Natarajan <bala@cs.wustl.edu> */ //============================================================================= @@ -17,11 +15,21 @@ #ifndef TAO_TARGET_SPECIFICATION_H #define TAO_TARGET_SPECIFICATION_H + #include /**/ "ace/pre.h" -#include "tao/Object_KeyC.h" -#include "tao/IOPC.h" +#include "tao/corbafwd.h" +namespace IOP +{ + struct IOR; + struct TaggedProfile; +} + +namespace TAO +{ + class ObjectKey; +} /** * @class TAO_Target_Specification |