summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-05-02 00:02:53 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-05-02 00:02:53 +0000
commit33255b35aa0ef148f8d80198ce7c9f06281e624a (patch)
tree4bf387f6f32ed03c4209ecf1e1ece6d9a4707e4f
parentd56e4af316c12f539accb068826962a9ed98ebc4 (diff)
downloadATCD-33255b35aa0ef148f8d80198ce7c9f06281e624a.tar.gz
ChangeLogTag: 'head -1 ChangeLog'
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a24
-rw-r--r--TAO/orbsvcs/examples/RtEC/MCast/AddrServer.cpp2
-rw-r--r--TAO/orbsvcs/examples/RtEC/MCast/AddrServer.h2
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.h8
-rw-r--r--TAO/orbsvcs/tests/Event/Basic/BCast.cpp2
-rw-r--r--TAO/orbsvcs/tests/Event/Basic/BCast.h2
7 files changed, 26 insertions, 16 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index f75737c27fd..f5ba027407f 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,13 @@
+Tue May 01 19:00:11 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * orbsvcs/examples/RtEC/MCast/AddrServer.{h,cpp}:
+ * orbsvcs/orbsvcs/Naming/Naming_Loader.{h,cpp}:
+ * orbsvcs/tests/Event/Basic/BCast.{h,cpp}: Changed the empty
+ ACE_THROW_SPEC (()) with ACE_THROW_SPEC
+ ((CORBA::SystemException)) so that TAO can compile with FORTE
+ 6.1. Thanks to Russ Noseworthy for the patches. More of the
+ patches would be checked in the next few hours.
+
Tue May 01 12:00:11 2001 Irfan Pyarali <irfan@cs.wustl.edu>
* $ACE_ROOT/auto_run_tests.lst: Don't run
@@ -36,12 +46,12 @@ Tue May 01 08:50:11 2001 Ossama Othman <ossama@uci.edu>
Tue May 1 09:40:08 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/AMI_Buffering/Makefile: Made a check for ami instead of
- corba_messaging.
-
+ corba_messaging.
+
Mon Apr 30 22:50:27 2001 Priyanka Gontla <pgontla@ece.uci.edu>
- * tao/CORBALOC_Parser.h:
- * tao/CORBALOC_Parser.cpp:
+ * tao/CORBALOC_Parser.h:
+ * tao/CORBALOC_Parser.cpp:
Fixed the blocker bug 849. Included some parsing code so as to
check if the protocol used by the application is a known protocol.
@@ -53,7 +63,7 @@ Mon Apr 30 19:17:42 2001 Jeff Parsons <parsons@cs.wustl.edu>
operator for the union extracts it straight into
a _var. In the IDL_Test file full.idl, the interface
member is undefined, and VxWorks balks. The target
- of the member extraction was modified to be
+ of the member extraction was modified to be
foo_var.inout(), which it should have been anyway.
* tests/IDL_Test/fwd.idl:
@@ -61,7 +71,7 @@ Mon Apr 30 19:17:42 2001 Jeff Parsons <parsons@cs.wustl.edu>
If modules are nested, VxWorks gives a typedef error,
thinking that mod1::mod2::foo_ptr and
- POA_mod1::mod2::foo_ptr are the same. Since the
+ POA_mod1::mod2::foo_ptr are the same. Since the
nested modules are not essential to the test, and
rather than disable the test for VxWorks, one layer
of modules was taken out of the mutually dependent
@@ -74,7 +84,7 @@ Mon Apr 30 18:49:56 2001 Jeff Parsons <parsons@cs.wustl.edu>
New files for a new visitor that begins a separate
pass through the AST for generating the tie
- classes. Code generation for the tie classes has
+ classes. Code generation for the tie classes has
been moved from *S.h to *S_T.h. Some compilers,
notably SunCC 5.2, require that template class
declarations and source be in the same
diff --git a/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.cpp b/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.cpp
index 543834149a9..03988761554 100644
--- a/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.cpp
+++ b/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.cpp
@@ -13,7 +13,7 @@ void
AddrServer::get_addr (const RtecEventComm::EventHeader&,
RtecUDPAdmin::UDP_Addr_out addr,
CORBA::Environment&)
- ACE_THROW_SPEC (())
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
addr = this->addr_;
}
diff --git a/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.h b/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.h
index 4c58b12356b..a75f2a774ce 100644
--- a/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.h
+++ b/TAO/orbsvcs/examples/RtEC/MCast/AddrServer.h
@@ -42,7 +42,7 @@ public:
virtual void get_addr (const RtecEventComm::EventHeader& header,
RtecUDPAdmin::UDP_Addr_out addr,
CORBA::Environment&)
- ACE_THROW_SPEC (());
+ ACE_THROW_SPEC ((CORBA::SystemException));
private:
RtecUDPAdmin::UDP_Addr addr_;
diff --git a/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.cpp b/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.cpp
index 1e434b76c1d..240f2368547 100644
--- a/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.cpp
+++ b/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.cpp
@@ -64,7 +64,7 @@ CORBA::Object_ptr
TAO_Naming_Loader::create_object (CORBA::ORB_ptr orb,
int argc, char *argv[],
CORBA::Environment &)
- ACE_THROW_SPEC (())
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
int result;
diff --git a/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.h b/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.h
index a745a8018b4..ddbcab690bc 100644
--- a/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.h
+++ b/TAO/orbsvcs/orbsvcs/Naming/Naming_Loader.h
@@ -30,7 +30,7 @@ public:
// Constructor
TAO_Naming_Loader (void);
-
+
// Destructor
~TAO_Naming_Loader (void);
@@ -41,14 +41,14 @@ public:
// Called by the Service Configurator framework to remove the
// Event Service. Defined in <ace/Service_Config.h>
virtual int fini (void);
-
+
// This function call initializes the Naming Service given a reference to the
// ORB and the command line parameters.
CORBA::Object_ptr create_object (CORBA::ORB_ptr orb,
int argc, char *argv[],
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC (());
-
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
protected:
TAO_Naming_Server naming_server_;
diff --git a/TAO/orbsvcs/tests/Event/Basic/BCast.cpp b/TAO/orbsvcs/tests/Event/Basic/BCast.cpp
index a38f3cb6d34..7d922724794 100644
--- a/TAO/orbsvcs/tests/Event/Basic/BCast.cpp
+++ b/TAO/orbsvcs/tests/Event/Basic/BCast.cpp
@@ -201,7 +201,7 @@ void
Simple_Address_Server::get_addr (const RtecEventComm::EventHeader&,
RtecUDPAdmin::UDP_Addr& address,
CORBA::Environment &)
- ACE_THROW_SPEC (())
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
address = this->address_;
}
diff --git a/TAO/orbsvcs/tests/Event/Basic/BCast.h b/TAO/orbsvcs/tests/Event/Basic/BCast.h
index 5eafe822a3b..9c4ddfc6b91 100644
--- a/TAO/orbsvcs/tests/Event/Basic/BCast.h
+++ b/TAO/orbsvcs/tests/Event/Basic/BCast.h
@@ -72,7 +72,7 @@ public:
virtual void get_addr (const RtecEventComm::EventHeader& header,
RtecUDPAdmin::UDP_Addr& address,
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC (());
+ ACE_THROW_SPEC ((CORBA::SystemException));
private:
RtecUDPAdmin::UDP_Addr address_;