From 00a06ede6b466be1c5b15f65edba08bd0e604b83 Mon Sep 17 00:00:00 2001 From: gonzo Date: Sat, 1 Aug 1998 01:40:30 +0000 Subject: Added ACE_RCSID to TAO/tao/ --- TAO/ChangeLog-98c | 55 +++++++++++++++++++++++++++++++++++++ TAO/tao/Any.cpp | 2 ++ TAO/tao/CDR.cpp | 2 ++ TAO/tao/Client_Strategy_Factory.cpp | 2 ++ TAO/tao/Connect.cpp | 2 ++ TAO/tao/CurrentC.cpp | 2 ++ TAO/tao/CurrentS.cpp | 2 ++ TAO/tao/Exception.cpp | 2 ++ TAO/tao/Forwarding_Servant.cpp | 2 ++ TAO/tao/GIOP.cpp | 2 ++ TAO/tao/IIOP_Interpreter.cpp | 2 ++ TAO/tao/IIOP_ORB.cpp | 2 ++ TAO/tao/IIOP_Object.cpp | 3 +- TAO/tao/Invocation.cpp | 2 ++ TAO/tao/Marshal.cpp | 2 ++ TAO/tao/NVList.cpp | 2 ++ TAO/tao/ORB.cpp | 2 ++ TAO/tao/ORB_Core.cpp | 2 ++ TAO/tao/ORB_Strategies_T.cpp | 2 ++ TAO/tao/Object.cpp | 2 ++ TAO/tao/Object_KeyC.cpp | 1 + TAO/tao/Object_Table.cpp | 2 ++ TAO/tao/Operation_Table.cpp | 2 ++ TAO/tao/POA.cpp | 2 ++ TAO/tao/POAC.cpp | 2 ++ TAO/tao/POAS.cpp | 2 ++ TAO/tao/PolicyC.cpp | 2 ++ TAO/tao/PolicyS.cpp | 2 ++ TAO/tao/Principal.cpp | 2 ++ TAO/tao/Request.cpp | 2 ++ TAO/tao/Sequence.cpp | 2 ++ TAO/tao/Sequence_T.cpp | 2 ++ TAO/tao/Servant_Base.cpp | 2 ++ TAO/tao/Server_Request.cpp | 2 ++ TAO/tao/Server_Strategy_Factory.cpp | 2 ++ TAO/tao/Stub.cpp | 2 ++ TAO/tao/TAO.cpp | 2 ++ TAO/tao/TAO_Internal.cpp | 2 ++ TAO/tao/Typecode.cpp | 2 ++ TAO/tao/Typecode_Constants.cpp | 2 ++ TAO/tao/Union.cpp | 2 ++ TAO/tao/append.cpp | 2 ++ TAO/tao/debug.cpp | 2 ++ TAO/tao/decode.cpp | 2 ++ TAO/tao/deep_free.cpp | 2 ++ TAO/tao/default_client.cpp | 2 ++ TAO/tao/default_server.cpp | 2 ++ TAO/tao/encode.cpp | 2 ++ TAO/tao/params.cpp | 2 ++ TAO/tao/poa_T.cpp | 2 ++ TAO/tao/skip.cpp | 2 ++ TAO/tao/t-sizes.cpp | 2 ++ 52 files changed, 156 insertions(+), 1 deletion(-) (limited to 'TAO') diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c index 797dbc4693d..afab09ac6e9 100644 --- a/TAO/ChangeLog-98c +++ b/TAO/ChangeLog-98c @@ -1,3 +1,58 @@ +Fri Jul 31 20:34:27 1998 Gonzalo Diethelm + + * tao/Any.cpp: + * tao/CDR.cpp: + * tao/Client_Strategy_Factory.cpp: + * tao/Connect.cpp: + * tao/CurrentC.cpp: + * tao/CurrentS.cpp: + * tao/Exception.cpp: + * tao/Forwarding_Servant.cpp: + * tao/GIOP.cpp: + * tao/IIOP_Interpreter.cpp: + * tao/IIOP_ORB.cpp: + * tao/IIOP_Object.cpp: + * tao/Invocation.cpp: + * tao/Marshal.cpp: + * tao/NVList.cpp: + * tao/ORB.cpp: + * tao/ORB_Core.cpp: + * tao/ORB_Strategies_T.cpp: + * tao/Object.cpp: + * tao/Object_KeyC.cpp: + * tao/Object_Table.cpp: + * tao/Operation_Table.cpp: + * tao/POA.cpp: + * tao/POAC.cpp: + * tao/POAS.cpp: + * tao/PolicyC.cpp: + * tao/PolicyS.cpp: + * tao/Principal.cpp: + * tao/Request.cpp: + * tao/Sequence.cpp: + * tao/Sequence_T.cpp: + * tao/Servant_Base.cpp: + * tao/Server_Request.cpp: + * tao/Server_Strategy_Factory.cpp: + * tao/Stub.cpp: + * tao/TAO.cpp: + * tao/TAO_Internal.cpp: + * tao/Typecode.cpp: + * tao/Typecode_Constants.cpp: + * tao/Union.cpp: + * tao/append.cpp: + * tao/debug.cpp: + * tao/decode.cpp: + * tao/deep_free.cpp: + * tao/default_client.cpp: + * tao/default_server.cpp: + * tao/encode.cpp: + * tao/params.cpp: + * tao/poa_T.cpp: + * tao/skip.cpp: + * tao/t-sizes.cpp: + Added ACE_RCSID to these files. + Fri Jul 31 15:34:55 1998 Jeff Parsons * Param_Test/bd_string.cpp: diff --git a/TAO/tao/Any.cpp b/TAO/tao/Any.cpp index de33b867b73..f3117212db8 100644 --- a/TAO/tao/Any.cpp +++ b/TAO/tao/Any.cpp @@ -36,6 +36,8 @@ # include "tao/Any.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Any, "$Id$") + CORBA::TypeCode_ptr CORBA_Any::type (void) const { diff --git a/TAO/tao/CDR.cpp b/TAO/tao/CDR.cpp index 5dbeb24e697..6f2df3ffcb5 100644 --- a/TAO/tao/CDR.cpp +++ b/TAO/tao/CDR.cpp @@ -37,6 +37,8 @@ # include "tao/CDR.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, CDR, "$Id$") + int CDR::grow (ACE_Message_Block *mb, size_t minsize) { diff --git a/TAO/tao/Client_Strategy_Factory.cpp b/TAO/tao/Client_Strategy_Factory.cpp index b16602df36a..18064fc2fbe 100644 --- a/TAO/tao/Client_Strategy_Factory.cpp +++ b/TAO/tao/Client_Strategy_Factory.cpp @@ -2,6 +2,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, Client_Strategy_Factory, "$Id$") + TAO_Client_Strategy_Factory::TAO_Client_Strategy_Factory (void) { } diff --git a/TAO/tao/Connect.cpp b/TAO/tao/Connect.cpp index fa55dc48c07..9afb09dcea7 100644 --- a/TAO/tao/Connect.cpp +++ b/TAO/tao/Connect.cpp @@ -7,6 +7,8 @@ # include "tao/Connect.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Connect, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_Connect_Timeprobe_Description[] = diff --git a/TAO/tao/CurrentC.cpp b/TAO/tao/CurrentC.cpp index 8bb90837831..43c872cbe63 100644 --- a/TAO/tao/CurrentC.cpp +++ b/TAO/tao/CurrentC.cpp @@ -13,6 +13,8 @@ #include "CurrentC.i" #endif /* !defined INLINE */ +ACE_RCSID(tao, CurrentC, "$Id$") + CORBA_Current_ptr CORBA_Current::_duplicate (CORBA_Current_ptr obj) { if (!CORBA::is_nil (obj)) diff --git a/TAO/tao/CurrentS.cpp b/TAO/tao/CurrentS.cpp index abe4568c536..e238938c147 100644 --- a/TAO/tao/CurrentS.cpp +++ b/TAO/tao/CurrentS.cpp @@ -9,6 +9,8 @@ #include "corba.h" +ACE_RCSID(tao, CurrentS, "$Id$") + static const TAO_operation_db_entry CORBA_Current_operations [] = { {"_is_a", &POA_CORBA::Current::_is_a_skel} }; diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp index 6283913e705..72cb536bfb7 100644 --- a/TAO/tao/Exception.cpp +++ b/TAO/tao/Exception.cpp @@ -14,6 +14,8 @@ # include "tao/Exception.i" #endif /* __ACE_INLINE__ */ +ACE_RCSID(tao, Exception, "$Id$") + // Static initializers. CORBA::ExceptionList *TAO_Exceptions::system_exceptions; diff --git a/TAO/tao/Forwarding_Servant.cpp b/TAO/tao/Forwarding_Servant.cpp index d87101ac1cf..95ba63d3765 100644 --- a/TAO/tao/Forwarding_Servant.cpp +++ b/TAO/tao/Forwarding_Servant.cpp @@ -2,6 +2,8 @@ #include "tao/Forwarding_Servant.h" +ACE_RCSID(tao, Forwarding_Servant, "$Id$") + TAO_Forwarding_Servant::TAO_Forwarding_Servant (CORBA::Object_ptr forward_to, const char *interface_repository_id) : forward_to_ (CORBA::Object::_duplicate (forward_to)), diff --git a/TAO/tao/GIOP.cpp b/TAO/tao/GIOP.cpp index 51dee3c82ba..59de953b033 100644 --- a/TAO/tao/GIOP.cpp +++ b/TAO/tao/GIOP.cpp @@ -49,6 +49,8 @@ # include "tao/GIOP.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, GIOP, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_GIOP_Timeprobe_Description[] = diff --git a/TAO/tao/IIOP_Interpreter.cpp b/TAO/tao/IIOP_Interpreter.cpp index 32badaf4010..674519ec16b 100644 --- a/TAO/tao/IIOP_Interpreter.cpp +++ b/TAO/tao/IIOP_Interpreter.cpp @@ -6,6 +6,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, IIOP_Interpreter, "$Id$") + TAO_IIOP_Interpreter::Table_Element TAO_IIOP_Interpreter::table_[CORBA::TC_KIND_COUNT] = { diff --git a/TAO/tao/IIOP_ORB.cpp b/TAO/tao/IIOP_ORB.cpp index 5f02a5cf184..6897f7910d6 100644 --- a/TAO/tao/IIOP_ORB.cpp +++ b/TAO/tao/IIOP_ORB.cpp @@ -15,6 +15,8 @@ # include "tao/IIOP_ORB.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, IIOP_ORB, "$Id$") + static const char ior_prefix [] = "IOR:"; static const char iiop_prefix [] = "iiop:"; diff --git a/TAO/tao/IIOP_Object.cpp b/TAO/tao/IIOP_Object.cpp index 5e4850bb377..979d23e38ba 100644 --- a/TAO/tao/IIOP_Object.cpp +++ b/TAO/tao/IIOP_Object.cpp @@ -1,4 +1,3 @@ - // $Id$ // @ (#)iiopobj.cpp 1.9 95/11/04 @@ -19,6 +18,8 @@ #include "tao/Timeprobe.h" +ACE_RCSID(tao, IIOP_Object, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_IIOP_Object_Timeprobe_Description[] = diff --git a/TAO/tao/Invocation.cpp b/TAO/tao/Invocation.cpp index 8251ad9a20d..4653026b1be 100644 --- a/TAO/tao/Invocation.cpp +++ b/TAO/tao/Invocation.cpp @@ -7,6 +7,8 @@ # include "tao/Invocation.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Invocation, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_Invocation_Timeprobe_Description[] = diff --git a/TAO/tao/Marshal.cpp b/TAO/tao/Marshal.cpp index 963997b85cc..9f10811ce20 100644 --- a/TAO/tao/Marshal.cpp +++ b/TAO/tao/Marshal.cpp @@ -27,6 +27,8 @@ # include "tao/Marshal.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Marshal, "$Id$") + TAO_Marshal_Factory* TAO_Marshal::DEFAULT_MARSHAL_FACTORY = 0; void diff --git a/TAO/tao/NVList.cpp b/TAO/tao/NVList.cpp index 244d48e83a7..ce05729f648 100644 --- a/TAO/tao/NVList.cpp +++ b/TAO/tao/NVList.cpp @@ -8,6 +8,8 @@ # include "tao/NVList.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, NVList, "$Id$") + // Reference counting for DII Request object CORBA::ULong diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp index d777e870483..b4b343be5b8 100644 --- a/TAO/tao/ORB.cpp +++ b/TAO/tao/ORB.cpp @@ -18,6 +18,8 @@ #include "tao/Timeprobe.h" +ACE_RCSID(tao, ORB, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_ORB_Timeprobe_Description[] = diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp index 218e4529a8f..b0dfe5e1527 100644 --- a/TAO/tao/ORB_Core.cpp +++ b/TAO/tao/ORB_Core.cpp @@ -12,6 +12,8 @@ # include "tao/ORB_Core.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, ORB_Core, "$Id$") + typedef ACE_TSS_Singleton TAO_ORB_CORE; diff --git a/TAO/tao/ORB_Strategies_T.cpp b/TAO/tao/ORB_Strategies_T.cpp index 4e236326a95..cada4a01eef 100644 --- a/TAO/tao/ORB_Strategies_T.cpp +++ b/TAO/tao/ORB_Strategies_T.cpp @@ -6,6 +6,8 @@ #include "tao/ORB_Strategies_T.i" #endif /* __ACE_INLINE__ */ +ACE_RCSID(tao, ORB_Strategies_T, "$Id$") + template int TAO_Reactive_Strategy::activate_svc_handler (SH *svc_handler, void *arg) { diff --git a/TAO/tao/Object.cpp b/TAO/tao/Object.cpp index a7c846c826d..d0fb8362d17 100644 --- a/TAO/tao/Object.cpp +++ b/TAO/tao/Object.cpp @@ -11,6 +11,8 @@ # include "tao/Object.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Object, "$Id$") + CORBA_Object::~CORBA_Object (void) { this->protocol_proxy_->_decr_refcnt (); diff --git a/TAO/tao/Object_KeyC.cpp b/TAO/tao/Object_KeyC.cpp index 4340c37c031..97b59c51a23 100644 --- a/TAO/tao/Object_KeyC.cpp +++ b/TAO/tao/Object_KeyC.cpp @@ -13,6 +13,7 @@ #include "Object_KeyC.i" #endif // !defined INLINE +ACE_RCSID(tao, Object_KeyC, "$Id$") #if !defined (_TAO__TAO_SEQ_OCTET_CS_) #define _TAO__TAO_SEQ_OCTET_CS_ diff --git a/TAO/tao/Object_Table.cpp b/TAO/tao/Object_Table.cpp index a9421185c71..567b48af86e 100644 --- a/TAO/tao/Object_Table.cpp +++ b/TAO/tao/Object_Table.cpp @@ -5,6 +5,8 @@ #include "tao/corba.h" #include "tao/Object_Table.h" +ACE_RCSID(tao, Object_Table, "$Id$") + TAO_Object_Table_Iterator_Impl::~TAO_Object_Table_Iterator_Impl (void) { } diff --git a/TAO/tao/Operation_Table.cpp b/TAO/tao/Operation_Table.cpp index 91e26e4f74b..4c9d74b5dc4 100644 --- a/TAO/tao/Operation_Table.cpp +++ b/TAO/tao/Operation_Table.cpp @@ -1,6 +1,8 @@ // $Id$ #include "tao/corba.h" +ACE_RCSID(tao, Operation_Table, "$Id$") + // destructor TAO_Operation_Table::~TAO_Operation_Table (void) { diff --git a/TAO/tao/POA.cpp b/TAO/tao/POA.cpp index 510edae748b..d5c9ef5682e 100644 --- a/TAO/tao/POA.cpp +++ b/TAO/tao/POA.cpp @@ -15,6 +15,8 @@ // Timeprobes class #include "tao/Timeprobe.h" +ACE_RCSID(tao, POA, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_POA_Timeprobe_Description[] = diff --git a/TAO/tao/POAC.cpp b/TAO/tao/POAC.cpp index 14b0c38a580..35c483069c0 100644 --- a/TAO/tao/POAC.cpp +++ b/TAO/tao/POAC.cpp @@ -17,6 +17,8 @@ #include "POAC.i" #endif // !defined INLINE +ACE_RCSID(tao, POAC, "$Id$") + #if !defined (_PORTABLESERVER__TAO_SEQ_OCTET_CS_) #define _PORTABLESERVER__TAO_SEQ_OCTET_CS_ diff --git a/TAO/tao/POAS.cpp b/TAO/tao/POAS.cpp index d58ab1761ac..a28dd917159 100644 --- a/TAO/tao/POAS.cpp +++ b/TAO/tao/POAS.cpp @@ -13,6 +13,8 @@ #include "POAS.i" #endif // !defined INLINE +ACE_RCSID(tao, POAS, "$Id$") + static const TAO_operation_db_entry PortableServer_ThreadPolicy_operations [] = { {"_get_value", &POA_PortableServer::ThreadPolicy::_get_value_skel}, {"copy", &POA_PortableServer::ThreadPolicy::copy_skel}, diff --git a/TAO/tao/PolicyC.cpp b/TAO/tao/PolicyC.cpp index ff5ac91cbcb..1604bc0bd7f 100644 --- a/TAO/tao/PolicyC.cpp +++ b/TAO/tao/PolicyC.cpp @@ -15,6 +15,8 @@ #include "PolicyC.i" #endif /* !defined INLINE */ +ACE_RCSID(tao, PolicyC, "$Id$") + CORBA_Policy_ptr CORBA_Policy::_duplicate (CORBA_Policy_ptr obj) { if (!CORBA::is_nil (obj)) diff --git a/TAO/tao/PolicyS.cpp b/TAO/tao/PolicyS.cpp index 4e67eaac30f..d70670d4f50 100644 --- a/TAO/tao/PolicyS.cpp +++ b/TAO/tao/PolicyS.cpp @@ -11,6 +11,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, PolicyS, "$Id$") + static const TAO_operation_db_entry CORBA_Policy_operations [] = { {"_get_policy_type", &POA_CORBA::Policy::_get_policy_type_skel}, {"copy", &POA_CORBA::Policy::copy_skel}, diff --git a/TAO/tao/Principal.cpp b/TAO/tao/Principal.cpp index 47963d9f6d4..4751d0bf8e8 100644 --- a/TAO/tao/Principal.cpp +++ b/TAO/tao/Principal.cpp @@ -10,6 +10,8 @@ #include "tao/Principal.i" #endif /* __ACE_INLINE__ */ +ACE_RCSID(tao, Principal, "$Id$") + CORBA_Principal::CORBA_Principal (void) { } diff --git a/TAO/tao/Request.cpp b/TAO/tao/Request.cpp index 315106fd983..77b55e2b752 100644 --- a/TAO/tao/Request.cpp +++ b/TAO/tao/Request.cpp @@ -6,6 +6,8 @@ # include "tao/Request.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Request, "$Id$") + CORBA::ULong CORBA_Request::_incr_refcnt (void) { diff --git a/TAO/tao/Sequence.cpp b/TAO/tao/Sequence.cpp index 57629b8108d..b3d577eadf9 100644 --- a/TAO/tao/Sequence.cpp +++ b/TAO/tao/Sequence.cpp @@ -6,6 +6,8 @@ #include "tao/Sequence.i" #endif /* __ACE_INLINE__ */ +ACE_RCSID(tao, Sequence, "$Id$") + // ************************************************************* // Operations for class TAO_Base_Sequence // ************************************************************* diff --git a/TAO/tao/Sequence_T.cpp b/TAO/tao/Sequence_T.cpp index 2af87489898..af795395a12 100644 --- a/TAO/tao/Sequence_T.cpp +++ b/TAO/tao/Sequence_T.cpp @@ -9,6 +9,8 @@ #include "tao/Sequence_T.i" #endif /* __ACE_INLINE__ */ +ACE_RCSID(tao, Sequence_T, "$Id$") + template TAO_Unbounded_Sequence:: TAO_Unbounded_Sequence (const TAO_Unbounded_Sequence &rhs) diff --git a/TAO/tao/Servant_Base.cpp b/TAO/tao/Servant_Base.cpp index 4606579f4de..bf0a0f5b736 100644 --- a/TAO/tao/Servant_Base.cpp +++ b/TAO/tao/Servant_Base.cpp @@ -3,6 +3,8 @@ #include "tao/corba.h" #include "tao/Timeprobe.h" +ACE_RCSID(tao, Servant_Base, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_Servant_Base_Timeprobe_Description[] = diff --git a/TAO/tao/Server_Request.cpp b/TAO/tao/Server_Request.cpp index 6ac0d882223..7e6549fd8f7 100644 --- a/TAO/tao/Server_Request.cpp +++ b/TAO/tao/Server_Request.cpp @@ -11,6 +11,8 @@ # include "tao/Server_Request.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Server_Request, "$Id$") + #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_Server_Request_Timeprobe_Description[] = diff --git a/TAO/tao/Server_Strategy_Factory.cpp b/TAO/tao/Server_Strategy_Factory.cpp index 65be97026c9..f91abd0f3c6 100644 --- a/TAO/tao/Server_Strategy_Factory.cpp +++ b/TAO/tao/Server_Strategy_Factory.cpp @@ -2,6 +2,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, Server_Strategy_Factory, "$Id$") + TAO_Server_Strategy_Factory::TAO_Server_Strategy_Factory (void) { } diff --git a/TAO/tao/Stub.cpp b/TAO/tao/Stub.cpp index 80f4731f02f..ede6c172fe7 100644 --- a/TAO/tao/Stub.cpp +++ b/TAO/tao/Stub.cpp @@ -5,3 +5,5 @@ #if !defined (__ACE_INLINE__) # include "tao/Stub.i" #endif /* ! __ACE_INLINE__ */ + +ACE_RCSID(tao, Stub, "$Id$") diff --git a/TAO/tao/TAO.cpp b/TAO/tao/TAO.cpp index 441983eeccf..c28a8e6b21c 100644 --- a/TAO/tao/TAO.cpp +++ b/TAO/tao/TAO.cpp @@ -15,6 +15,8 @@ #include "TAO.h" +ACE_RCSID(tao, TAO, "$Id$") + // constructor TAO_ORB_Manager::TAO_ORB_Manager (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa, diff --git a/TAO/tao/TAO_Internal.cpp b/TAO/tao/TAO_Internal.cpp index 3998f852bb2..742af702ce1 100644 --- a/TAO/tao/TAO_Internal.cpp +++ b/TAO/tao/TAO_Internal.cpp @@ -7,6 +7,8 @@ #include "tao/default_client.h" #include "tao/TAO_Internal.h" +ACE_RCSID(tao, TAO_Internal, "$Id$") + int TAO_Internal::service_open_count_ = 0; int diff --git a/TAO/tao/Typecode.cpp b/TAO/tao/Typecode.cpp index d7696abb059..a79f2943cee 100644 --- a/TAO/tao/Typecode.cpp +++ b/TAO/tao/Typecode.cpp @@ -18,6 +18,8 @@ # include "tao/Typecode.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, Typecode, "$Id$") + CORBA_TypeCode::Bounds::Bounds (void) : CORBA_UserException (CORBA::_tc_Bounds) { diff --git a/TAO/tao/Typecode_Constants.cpp b/TAO/tao/Typecode_Constants.cpp index 3da0ea7da2c..90d106fc22a 100644 --- a/TAO/tao/Typecode_Constants.cpp +++ b/TAO/tao/Typecode_Constants.cpp @@ -28,6 +28,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, Typecode_Constants, "$Id$") + // Declare all the standard typecodes owned by the ORB // Null and void diff --git a/TAO/tao/Union.cpp b/TAO/tao/Union.cpp index b8aeda25161..1669b235f9b 100644 --- a/TAO/tao/Union.cpp +++ b/TAO/tao/Union.cpp @@ -16,6 +16,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, Union, "$Id$") + // ************************************************************* // Operations for class TAO_Base_Union // ************************************************************* diff --git a/TAO/tao/append.cpp b/TAO/tao/append.cpp index 794eefc8d39..14b7bd49afe 100644 --- a/TAO/tao/append.cpp +++ b/TAO/tao/append.cpp @@ -21,6 +21,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, append, "$Id$") + // Encode instances of arbitrary data types based only on typecode. // "data" points to the data type; if it's not a primitve data type, // the TypeCode interpreter is used to recursively encode its diff --git a/TAO/tao/debug.cpp b/TAO/tao/debug.cpp index 0eb2b9f0e45..5cb02182e46 100644 --- a/TAO/tao/debug.cpp +++ b/TAO/tao/debug.cpp @@ -15,6 +15,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, debug, "$Id$") + #if !defined (ACE_HAS_PTHREADS) && !defined (ACE_HAS_DCE_DRAFT4_THREADS) // _POSIX_THREAD_SAFE_FUNCTIONS implied # define flockfile(f) diff --git a/TAO/tao/decode.cpp b/TAO/tao/decode.cpp index 4a5b54ef0cd..13c0ffc1731 100644 --- a/TAO/tao/decode.cpp +++ b/TAO/tao/decode.cpp @@ -25,6 +25,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, decode, "$Id$") + // The decoder is exactly the reverse of the encoder, except that: // // * Unmarshaling some data types involve allocating memory. Such diff --git a/TAO/tao/deep_free.cpp b/TAO/tao/deep_free.cpp index 642feb321d2..3e73054bc22 100644 --- a/TAO/tao/deep_free.cpp +++ b/TAO/tao/deep_free.cpp @@ -30,6 +30,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, deep_free, "$Id$") + CORBA::TypeCode::traverse_status DEEP_FREE (CORBA::TypeCode_ptr param, const void *source, diff --git a/TAO/tao/default_client.cpp b/TAO/tao/default_client.cpp index 160cfc8ad16..f89432b24ea 100644 --- a/TAO/tao/default_client.cpp +++ b/TAO/tao/default_client.cpp @@ -7,6 +7,8 @@ # include "tao/default_client.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, default_client, "$Id$") + TAO_Default_Client_Strategy_Factory::TAO_Default_Client_Strategy_Factory (void) : iiop_profile_lock_type_ (TAO_THREAD_LOCK) { diff --git a/TAO/tao/default_server.cpp b/TAO/tao/default_server.cpp index d6cd521ef9e..eaefbac65ec 100644 --- a/TAO/tao/default_server.cpp +++ b/TAO/tao/default_server.cpp @@ -7,6 +7,8 @@ # include "tao/default_client.i" #endif /* ! __ACE_INLINE__ */ +ACE_RCSID(tao, default_server, "$Id$") + TAO_Default_Server_Strategy_Factory::TAO_Default_Server_Strategy_Factory (void) : thread_flags_ (0), object_table_size_ (TAO_DEFAULT_SERVER_OBJECT_TABLE_SIZE), diff --git a/TAO/tao/encode.cpp b/TAO/tao/encode.cpp index 51ceb81d2c1..53fa33609e9 100644 --- a/TAO/tao/encode.cpp +++ b/TAO/tao/encode.cpp @@ -24,6 +24,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, encode, "$Id$") + // Encode instances of arbitrary data types based only on typecode. // "data" points to the data type; if it's not a primitve data type, // the TypeCode interpreter is used to recursively encode its diff --git a/TAO/tao/params.cpp b/TAO/tao/params.cpp index 36f8b89534d..f866c1e532f 100644 --- a/TAO/tao/params.cpp +++ b/TAO/tao/params.cpp @@ -6,6 +6,8 @@ # include "tao/params.i" #endif /* __ACE_INLINE__ */ +ACE_RCSID(tao, params, "$Id$") + TAO_ORB_Parameters::TAO_ORB_Parameters (void) : name_service_ior_ (0), name_service_port_ (0), diff --git a/TAO/tao/poa_T.cpp b/TAO/tao/poa_T.cpp index daa0466f3d4..8bebdd971c2 100644 --- a/TAO/tao/poa_T.cpp +++ b/TAO/tao/poa_T.cpp @@ -5,6 +5,8 @@ #include "tao/poa_T.h" +ACE_RCSID(tao, poa_T, "$Id$") + template TAO_Locked_POA::TAO_Locked_POA (const char *adapter_name, PortableServer::POAManager_ptr poa_manager, diff --git a/TAO/tao/skip.cpp b/TAO/tao/skip.cpp index 3154464c619..85b9c5d9c1e 100644 --- a/TAO/tao/skip.cpp +++ b/TAO/tao/skip.cpp @@ -21,6 +21,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, skip, "$Id$") + CORBA::TypeCode::traverse_status TAO_Marshal_Primitive::skip (CORBA::TypeCode_ptr tc, void *context, diff --git a/TAO/tao/t-sizes.cpp b/TAO/tao/t-sizes.cpp index 3da0e18d469..4ca04cd058d 100644 --- a/TAO/tao/t-sizes.cpp +++ b/TAO/tao/t-sizes.cpp @@ -2,6 +2,8 @@ #include "tao/corba.h" +ACE_RCSID(tao, t_sizes, "$Id$") + #define SHOWSIZE(t) ACE_OS::printf ("sizeof (%s) = %u\n", #t, sizeof(t)); int -- cgit v1.2.1