summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 23:56:50 +0000
committerfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 23:56:50 +0000
commit2b5c193d97c318773ffe089de9df5a7d68767a57 (patch)
treea94b910b19e93845f712ca292dca07e1ea8866b8
parent6d956bb33e96a3f886a1a3a4e1fbe5afff17ccf0 (diff)
downloadATCD-2b5c193d97c318773ffe089de9df5a7d68767a57.tar.gz
Wed May 23 18:53:12 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a7
-rw-r--r--TAO/tao/RTPOA.pidl74
2 files changed, 7 insertions, 74 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index ef81e4b5303..e3edac36325 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Wed May 23 18:53:12 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
+
+ * tao/RTPOA.pidl:
+ Removed file, since it is not used anymore and is replaced by
+ tao/PortableServer/RTPortableServer.pidl. Thanks to Steve
+ Totten <totten_s@ociweb.com> for pointing this out.
+
Wed May 23 15:11:29 2001 Carlos O'Ryan <coryan@uci.edu>
* performance-tests/Makefile:
diff --git a/TAO/tao/RTPOA.pidl b/TAO/tao/RTPOA.pidl
deleted file mode 100644
index 9b9fd7ca969..00000000000
--- a/TAO/tao/RTPOA.pidl
+++ /dev/null
@@ -1,74 +0,0 @@
-//
-// $Id$
-//
-// ================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// RTPOA.pidl
-//
-// = DESCRIPTION
-//
-// The RTPortableServer module specified in CORBA v2.4.2 Chapter
-// 24 (February, 2001). This file is equivalent to OMG's
-// RTPortableServer.idl.
-//
-// This file was used to generate the code in
-// RTPOA{C,S,S_T}.{h,i,cpp} The command used to generate code
-// is:
-//
-// tao_idl -o orig -Gp -Gd -Ge 1 -Gv \
-// -Wb,export_macro=TAO_Export \
-// -Wb,export_include=corbafwd.h \
-// -Wb,pre_include="ace/pre.h" \
-// -Wb,post_include="ace/post.h" \
-// RTPOA.pidl
-//
-// after the files are generated, patches located in tao/diffs
-// directory must be applied. The patches fix the interface
-// repository IDs, disable the code under certain configurations,
-// and eliminate cycles in the include dependencies. Those changes
-// are required because the generated code is part of the TAO
-// library, it hardly makes any sense to change the IDL compiler to
-// support changes that are very occasional.
-//
-// ================================================================
-
-#ifndef _RT_PORTABLE_SERVER_IDL_
-#define _RT_PORTABLE_SERVER_IDL_
-
-//#include <orb.idl>
-#include <POA.pidl>
-#include <RTCORBA.pidl>
-
-#pragma prefix "omg.org"
-
-module RTPortableServer
-{
- interface POA : PortableServer::POA
- {
- Object create_reference_with_priority (in CORBA::RepositoryId intf,
- in RTCORBA::Priority priority)
- raises (WrongPolicy);
-
- Object create_reference_with_id_and_priority (in PortableServer::ObjectId oid,
- in CORBA::RepositoryId intf,
- in RTCORBA::Priority priority)
- raises (WrongPolicy);
-
- ObjectId activate_object_with_priority (in PortableServer::Servant p_servant,
- in RTCORBA::Priority priority)
- raises (ServantAlreadyActive, WrongPolicy);
-
- void activate_object_with_id_and_priority (in PortableServer::ObjectId oid,
- in PortableServer::Servant p_servant,
- in RTCORBA::Priority priority)
- raises ( ServantAlreadyActive, ObjectAlreadyActive, WrongPolicy );
- };
-};
-
-#pragma prefix ""
-
-#endif /* _RT_PORTABLE_SERVER_IDL_ */