summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ();
};
/**