summaryrefslogtreecommitdiff
path: root/TAO/examples/Kokyu_dsrt_schedulers/MIF_Scheduling.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Kokyu_dsrt_schedulers/MIF_Scheduling.pidl')
-rw-r--r--TAO/examples/Kokyu_dsrt_schedulers/MIF_Scheduling.pidl24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/examples/Kokyu_dsrt_schedulers/MIF_Scheduling.pidl b/TAO/examples/Kokyu_dsrt_schedulers/MIF_Scheduling.pidl
new file mode 100644
index 00000000000..f656ed0dfcf
--- /dev/null
+++ b/TAO/examples/Kokyu_dsrt_schedulers/MIF_Scheduling.pidl
@@ -0,0 +1,24 @@
+//$Id$
+#include <tao/RTScheduling/RTScheduler.pidl>
+#include <tao/RTCORBA/RTCORBA.pidl>
+
+module MIF_Scheduling
+{
+ struct SchedulingParameter
+ {
+ long importance;
+ };
+
+ local interface SchedulingParameterPolicy
+ : CORBA::Policy
+ {
+ attribute SchedulingParameter value;
+ };
+
+ local interface Scheduler : RTScheduling::Scheduler
+ {
+ SchedulingParameterPolicy
+ create_scheduling_parameter
+ (in SchedulingParameter value);
+ };
+};