summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorgonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-01 01:40:30 +0000
committergonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-01 01:40:30 +0000
commit00a06ede6b466be1c5b15f65edba08bd0e604b83 (patch)
treebbba152626c53f24bb9661c597c223aef649b3ec /TAO/tao
parentccca5d95b93ff8e1e51f1aa36da43543844e4ff7 (diff)
downloadATCD-00a06ede6b466be1c5b15f65edba08bd0e604b83.tar.gz
Added ACE_RCSID to TAO/tao/
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/Any.cpp2
-rw-r--r--TAO/tao/CDR.cpp2
-rw-r--r--TAO/tao/Client_Strategy_Factory.cpp2
-rw-r--r--TAO/tao/Connect.cpp2
-rw-r--r--TAO/tao/CurrentC.cpp2
-rw-r--r--TAO/tao/CurrentS.cpp2
-rw-r--r--TAO/tao/Exception.cpp2
-rw-r--r--TAO/tao/Forwarding_Servant.cpp2
-rw-r--r--TAO/tao/GIOP.cpp2
-rw-r--r--TAO/tao/IIOP_Interpreter.cpp2
-rw-r--r--TAO/tao/IIOP_ORB.cpp2
-rw-r--r--TAO/tao/IIOP_Object.cpp3
-rw-r--r--TAO/tao/Invocation.cpp2
-rw-r--r--TAO/tao/Marshal.cpp2
-rw-r--r--TAO/tao/NVList.cpp2
-rw-r--r--TAO/tao/ORB.cpp2
-rw-r--r--TAO/tao/ORB_Core.cpp2
-rw-r--r--TAO/tao/ORB_Strategies_T.cpp2
-rw-r--r--TAO/tao/Object.cpp2
-rw-r--r--TAO/tao/Object_KeyC.cpp1
-rw-r--r--TAO/tao/Object_Table.cpp2
-rw-r--r--TAO/tao/Operation_Table.cpp2
-rw-r--r--TAO/tao/POA.cpp2
-rw-r--r--TAO/tao/POAC.cpp2
-rw-r--r--TAO/tao/POAS.cpp2
-rw-r--r--TAO/tao/PolicyC.cpp2
-rw-r--r--TAO/tao/PolicyS.cpp2
-rw-r--r--TAO/tao/Principal.cpp2
-rw-r--r--TAO/tao/Request.cpp2
-rw-r--r--TAO/tao/Sequence.cpp2
-rw-r--r--TAO/tao/Sequence_T.cpp2
-rw-r--r--TAO/tao/Servant_Base.cpp2
-rw-r--r--TAO/tao/Server_Request.cpp2
-rw-r--r--TAO/tao/Server_Strategy_Factory.cpp2
-rw-r--r--TAO/tao/Stub.cpp2
-rw-r--r--TAO/tao/TAO.cpp2
-rw-r--r--TAO/tao/TAO_Internal.cpp2
-rw-r--r--TAO/tao/Typecode.cpp2
-rw-r--r--TAO/tao/Typecode_Constants.cpp2
-rw-r--r--TAO/tao/Union.cpp2
-rw-r--r--TAO/tao/append.cpp2
-rw-r--r--TAO/tao/debug.cpp2
-rw-r--r--TAO/tao/decode.cpp2
-rw-r--r--TAO/tao/deep_free.cpp2
-rw-r--r--TAO/tao/default_client.cpp2
-rw-r--r--TAO/tao/default_server.cpp2
-rw-r--r--TAO/tao/encode.cpp2
-rw-r--r--TAO/tao/params.cpp2
-rw-r--r--TAO/tao/poa_T.cpp2
-rw-r--r--TAO/tao/skip.cpp2
-rw-r--r--TAO/tao/t-sizes.cpp2
51 files changed, 101 insertions, 1 deletions
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, ACE_SYNCH_MUTEX>
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 <class SH> int
TAO_Reactive_Strategy<SH>::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 <class T>
TAO_Unbounded_Sequence<T>::
TAO_Unbounded_Sequence (const TAO_Unbounded_Sequence<T> &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 <class ACE_LOCKING_MECHANISM>
TAO_Locked_POA<ACE_LOCKING_MECHANISM>::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