summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-10 16:58:31 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-10 16:58:31 +0000
commitafe60db2ace4db47732e4addaf52483292b04889 (patch)
tree95d53700af8a2041cb8ce6212a7a3f38a9f062e0
parent403488358eaaa1e23908dd0caa604f41d066afa5 (diff)
downloadATCD-afe60db2ace4db47732e4addaf52483292b04889.tar.gz
ChangeLogTag:Thu May 10 09:57:08 2001 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a8
-rw-r--r--TAO/performance-tests/DSI_Latency/Roundtrip.cpp1
-rw-r--r--TAO/performance-tests/DSI_Latency/Roundtrip.h4
-rw-r--r--TAO/performance-tests/Latency/DSI/Roundtrip.cpp1
-rw-r--r--TAO/performance-tests/Latency/DSI/Roundtrip.h4
5 files changed, 10 insertions, 8 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 71913a26a1d..c490843bbb4 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Thu May 10 09:57:08 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * performance-tests/DSI_Latency/Roundtrip.h:
+ * performance-tests/DSI_Latency/Roundtrip.cpp:
+ The base class don't have a throw spec, I don't think that's
+ such a great idea, but I think it is more consistent to have no
+ throw spec in the derived class also.
+
Thu May 10 09:50:53 2001 Carlos O'Ryan <coryan@uci.edu>
* performance-tests/AMI_Latency/AMI_Latency.dsw:
diff --git a/TAO/performance-tests/DSI_Latency/Roundtrip.cpp b/TAO/performance-tests/DSI_Latency/Roundtrip.cpp
index 6129547f3b9..c82471f6199 100644
--- a/TAO/performance-tests/DSI_Latency/Roundtrip.cpp
+++ b/TAO/performance-tests/DSI_Latency/Roundtrip.cpp
@@ -14,7 +14,6 @@ Roundtrip::Roundtrip (CORBA::ORB_ptr orb)
void
Roundtrip::invoke (CORBA::ServerRequest_ptr request,
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
if (ACE_OS::strcmp ("shutdown", request->operation ()) == 0)
{
diff --git a/TAO/performance-tests/DSI_Latency/Roundtrip.h b/TAO/performance-tests/DSI_Latency/Roundtrip.h
index cafde5b9be4..443773bc9ef 100644
--- a/TAO/performance-tests/DSI_Latency/Roundtrip.h
+++ b/TAO/performance-tests/DSI_Latency/Roundtrip.h
@@ -28,9 +28,7 @@ public:
// = The DSI methods
virtual void invoke (CORBA::ServerRequest_ptr request,
- CORBA_Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
+ CORBA_Environment &ACE_TRY_ENV);
virtual CORBA::RepositoryId _primary_interface (
const PortableServer::ObjectId &oid,
PortableServer::POA_ptr poa,
diff --git a/TAO/performance-tests/Latency/DSI/Roundtrip.cpp b/TAO/performance-tests/Latency/DSI/Roundtrip.cpp
index 6129547f3b9..c82471f6199 100644
--- a/TAO/performance-tests/Latency/DSI/Roundtrip.cpp
+++ b/TAO/performance-tests/Latency/DSI/Roundtrip.cpp
@@ -14,7 +14,6 @@ Roundtrip::Roundtrip (CORBA::ORB_ptr orb)
void
Roundtrip::invoke (CORBA::ServerRequest_ptr request,
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
if (ACE_OS::strcmp ("shutdown", request->operation ()) == 0)
{
diff --git a/TAO/performance-tests/Latency/DSI/Roundtrip.h b/TAO/performance-tests/Latency/DSI/Roundtrip.h
index cafde5b9be4..443773bc9ef 100644
--- a/TAO/performance-tests/Latency/DSI/Roundtrip.h
+++ b/TAO/performance-tests/Latency/DSI/Roundtrip.h
@@ -28,9 +28,7 @@ public:
// = The DSI methods
virtual void invoke (CORBA::ServerRequest_ptr request,
- CORBA_Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
+ CORBA_Environment &ACE_TRY_ENV);
virtual CORBA::RepositoryId _primary_interface (
const PortableServer::ObjectId &oid,
PortableServer::POA_ptr poa,