diff options
author | fhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-20 17:38:49 +0000 |
---|---|---|
committer | fhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-20 17:38:49 +0000 |
commit | a287716328e818d89eb50486f83bea9fd80afa83 (patch) | |
tree | dfca877fe0439ea23b4e74bf879530dbc8e2ed6f | |
parent | 3a2b8666105e941ea405bf466e88ad786bb29d92 (diff) | |
download | ATCD-a287716328e818d89eb50486f83bea9fd80afa83.tar.gz |
ChangeLogTag: Sun May 20 12:30:52 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 8 | ||||
-rw-r--r-- | TAO/performance-tests/Callback/Callback_i.cpp | 2 | ||||
-rw-r--r-- | TAO/performance-tests/Callback/Callback_i.h | 2 | ||||
-rw-r--r-- | TAO/performance-tests/Callback/Server_i.cpp | 4 | ||||
-rw-r--r-- | TAO/performance-tests/Callback/Server_i.h | 5 | ||||
-rw-r--r-- | TAO/performance-tests/Latency/test_i.cpp | 3 | ||||
-rw-r--r-- | TAO/performance-tests/Latency/test_i.h | 2 | ||||
-rw-r--r-- | TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp | 3 | ||||
-rw-r--r-- | TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.h | 2 |
9 files changed, 21 insertions, 10 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index ebdf862a978..cae1d07352c 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,11 @@ +Sun May 20 12:30:52 2001 Frank Hunleth <fhunleth@cs.wustl.edu> + + * performance-tests/Callback/Server_i.{h,cpp}: + * performance-tests/Callback/Callback_i.{h,cpp}: + * performance-tests/Latency/test_i.{h,cpp}: + * performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.{h,cpp}: + Fixed compile errors in Forte update 1. + Sun May 20 10:43:02 2001 Balachandran Natarajan <bala@cs.wustl.edu> * tests/OctetSeq/test_i.{h,cpp}: diff --git a/TAO/performance-tests/Callback/Callback_i.cpp b/TAO/performance-tests/Callback/Callback_i.cpp index 653cbf7928c..3f4a993f3f1 100644 --- a/TAO/performance-tests/Callback/Callback_i.cpp +++ b/TAO/performance-tests/Callback/Callback_i.cpp @@ -19,7 +19,7 @@ void Callback_i::response (Test::TimeStamp time_stamp, const Test::Payload &, CORBA::Environment &) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_hrtime_t now = ACE_OS::gethrtime (); ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_); diff --git a/TAO/performance-tests/Callback/Callback_i.h b/TAO/performance-tests/Callback/Callback_i.h index 5561ada4901..917032bcdfb 100644 --- a/TAO/performance-tests/Callback/Callback_i.h +++ b/TAO/performance-tests/Callback/Callback_i.h @@ -24,7 +24,7 @@ public: void response (Test::TimeStamp, const Test::Payload &, CORBA::Environment &) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); //@} private: diff --git a/TAO/performance-tests/Callback/Server_i.cpp b/TAO/performance-tests/Callback/Server_i.cpp index 6bf4a5bf73d..7859d40803b 100644 --- a/TAO/performance-tests/Callback/Server_i.cpp +++ b/TAO/performance-tests/Callback/Server_i.cpp @@ -11,7 +11,7 @@ ACE_RCSID(Callback, Server_i, "$Id$") void Server_i::set_callback (Test::Callback_ptr callback, CORBA::Environment &) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { this->callback_ = Test::Callback::_duplicate (callback); } @@ -30,7 +30,7 @@ Server_i::request (Test::TimeStamp time_stamp, void Server_i::shutdown (CORBA::Environment &) - ACE_THROW_SPEC (()) + ACE_THROW_SPEC ((CORBA::SystemException)) { this->done_ = 1; } diff --git a/TAO/performance-tests/Callback/Server_i.h b/TAO/performance-tests/Callback/Server_i.h index fca9406d808..e561c2c3ec8 100644 --- a/TAO/performance-tests/Callback/Server_i.h +++ b/TAO/performance-tests/Callback/Server_i.h @@ -19,7 +19,7 @@ public: //@{ void set_callback (Test::Callback_ptr callback, CORBA::Environment &) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); void request (Test::TimeStamp, const Test::Payload &, @@ -27,7 +27,8 @@ public: ACE_THROW_SPEC ((CORBA::SystemException)); void shutdown (CORBA::Environment&) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); + //@} private: diff --git a/TAO/performance-tests/Latency/test_i.cpp b/TAO/performance-tests/Latency/test_i.cpp index 4834c74b937..169b4ea9f5c 100644 --- a/TAO/performance-tests/Latency/test_i.cpp +++ b/TAO/performance-tests/Latency/test_i.cpp @@ -11,7 +11,8 @@ ACE_RCSID(Latency, test_i, "$Id$") CORBA::ULongLong Test_i::test_method (CORBA::ULongLong stamp, - CORBA::Environment&) ACE_THROW_SPEC (()) + CORBA::Environment&) + ACE_THROW_SPEC ((CORBA::SystemException)) { #if defined (USING_QUANTIFY) diff --git a/TAO/performance-tests/Latency/test_i.h b/TAO/performance-tests/Latency/test_i.h index 953bf67d30d..71323bbc22d 100644 --- a/TAO/performance-tests/Latency/test_i.h +++ b/TAO/performance-tests/Latency/test_i.h @@ -33,7 +33,7 @@ public: // = The Test methods. CORBA::ULongLong test_method (CORBA::ULongLong stamp, CORBA::Environment&) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); void shutdown (CORBA::Environment&) ACE_THROW_SPEC ((CORBA::SystemException)); diff --git a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp index 21e7d38a3b5..c2aff04156b 100644 --- a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp +++ b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.cpp @@ -12,7 +12,8 @@ ACE_RCSID(Latency, test_i, "$Id$") void Test_i::test_method (CORBA::Long id, - CORBA::Environment&) ACE_THROW_SPEC (()) + CORBA::Environment&) + ACE_THROW_SPEC ((CORBA::SystemException)) { if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG, diff --git a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.h b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.h index ba113c7263f..b7bef2f7279 100644 --- a/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.h +++ b/TAO/performance-tests/RTCorba/Multiple_Endpoints/Common/test_i.h @@ -33,7 +33,7 @@ public: // = The Test methods. void test_method (CORBA::Long id, CORBA::Environment&) - ACE_THROW_SPEC (()); + ACE_THROW_SPEC ((CORBA::SystemException)); void shutdown (const char *orb_id, CORBA::Environment&) |