summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-14 16:59:10 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-14 16:59:10 +0000
commitcf245866985f279965dc8d3df9b6f5e2531d49f1 (patch)
tree6223e24fe4505462332311e51d81662897e28e54
parent36724a1c1670832ddbac4ad345cb943bae9e921f (diff)
downloadATCD-cf245866985f279965dc8d3df9b6f5e2531d49f1.tar.gz
*** empty log message ***
-rw-r--r--TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.cpp10
-rw-r--r--TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.h4
-rw-r--r--TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl6
3 files changed, 15 insertions, 5 deletions
diff --git a/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.cpp b/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.cpp
index 582363d3f4c..dd287132428 100644
--- a/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.cpp
+++ b/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.cpp
@@ -12,6 +12,16 @@ MyImpl::Controller_exec_i::~Controller_exec_i ()
{
}
+// Operations from Priority_Test::Controller
+void
+MyImpl::Controller_exec_i::perform_test (ACE_ENV_SINGLE_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ // This simply performs some measurements and print out the result.
+
+
+}
+
// Operations from Components::SessionComponent
void
MyImpl::Controller_exec_i::set_session_context (Components::SessionContext_ptr ctx
diff --git a/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.h b/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.h
index 1ff43d4776b..1aa46053052 100644
--- a/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.h
+++ b/TAO/CIAO/tests/RTCCM/Priority_Test/Controllers/Controller_exec.h
@@ -42,6 +42,10 @@ namespace MyImpl
// Operations from Priority_Test::Controller
+ virtual void
+ perform_test (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
// Operations from Components::SessionComponent
virtual void
diff --git a/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl b/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl
index f8bedb0de9c..bf073c04414 100644
--- a/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl
+++ b/TAO/CIAO/tests/RTCCM/Priority_Test/Priority_Test.idl
@@ -20,11 +20,7 @@ module Priority_Test
*/
interface Op_Mode
{
- void start ();
-
- void stop ();
-
- boolean active ();
+ void perform_test ();
};
/**