summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Latency/Thread_Per_Connection
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 12:24:01 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 12:24:01 +0000
commit50fffc24294535c79b949b696f908c092d43f790 (patch)
tree186521ff27377b238d53deae3e3a8f67b5b3ded4 /TAO/performance-tests/Latency/Thread_Per_Connection
parent3514dc83e10aefc0d099b11efd35555ac0ff3d05 (diff)
downloadATCD-50fffc24294535c79b949b696f908c092d43f790.tar.gz
Mon Feb 12 12:22:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/performance-tests/Latency/Thread_Per_Connection')
-rw-r--r--TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.cpp2
-rw-r--r--TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.h6
2 files changed, 2 insertions, 6 deletions
diff --git a/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.cpp b/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.cpp
index 97a05de4635..9e4b7659718 100644
--- a/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.cpp
+++ b/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.cpp
@@ -12,14 +12,12 @@ Roundtrip::Roundtrip (CORBA::ORB_ptr orb)
Test::Timestamp
Roundtrip::test_method (Test::Timestamp send_time)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
return send_time;
}
void
Roundtrip::shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
this->orb_->shutdown (0);
}
diff --git a/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.h b/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.h
index c18e2f831b4..9ea3a22bc1c 100644
--- a/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.h
+++ b/TAO/performance-tests/Latency/Thread_Per_Connection/Roundtrip.h
@@ -22,11 +22,9 @@ public:
Roundtrip (CORBA::ORB_ptr orb);
// = The skeleton methods
- virtual Test::Timestamp test_method (Test::Timestamp send_time)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual Test::Timestamp test_method (Test::Timestamp send_time);
- virtual void shutdown (void)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void shutdown (void);
private:
/// Use an ORB reference to conver strings to objects and shutdown