summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-22 15:03:29 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-22 15:03:29 +0000
commitfb33effdbae63fae2da4a6d388a4a100f40bdb60 (patch)
tree7fe82d86293589c16bf6cf738cba17c14081f0d7
parent33026a10a799b6a4d1395b84a8daf144c7235080 (diff)
downloadATCD-fb33effdbae63fae2da4a6d388a4a100f40bdb60.tar.gz
ChangeLogTag:Thu Mar 22 07:02:17 2001 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a6
-rw-r--r--TAO/tests/Client_Leaks/Startup_Callback.cpp2
-rw-r--r--TAO/tests/Client_Leaks/Startup_Callback.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index b2c321f28eb..8af1f1bcfd6 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Thu Mar 22 07:02:17 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * tests/Client_Leaks/Startup_Callback.h:
+ * tests/Client_Leaks/Startup_Callback.cpp:
+ Fixed throw specs
+
Wed Mar 21 23:13:23 2001 Carlos O'Ryan <coryan@uci.edu>
* tao/Transport.h:
diff --git a/TAO/tests/Client_Leaks/Startup_Callback.cpp b/TAO/tests/Client_Leaks/Startup_Callback.cpp
index d789bafe55e..5b82a0586aa 100644
--- a/TAO/tests/Client_Leaks/Startup_Callback.cpp
+++ b/TAO/tests/Client_Leaks/Startup_Callback.cpp
@@ -24,7 +24,7 @@ Startup_Callback::process_has_started (Test::Process_out the_process)
void
Startup_Callback::started (Test::Process_ptr process,
CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException,Test::Spawn_Failed))
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->mutex_);
this->process_ = Test::Process::_duplicate (process);
diff --git a/TAO/tests/Client_Leaks/Startup_Callback.h b/TAO/tests/Client_Leaks/Startup_Callback.h
index 643014ed051..51a83a8c39b 100644
--- a/TAO/tests/Client_Leaks/Startup_Callback.h
+++ b/TAO/tests/Client_Leaks/Startup_Callback.h
@@ -34,7 +34,7 @@ public:
// = The skeleton methods
virtual void started (Test::Process_ptr the_process,
CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException,Test::Spawn_Failed));
+ ACE_THROW_SPEC ((CORBA::SystemException));
private:
/// Synchronize changes to the internal data