summaryrefslogtreecommitdiff
path: root/TAO/examples/RTScheduling/MIF_Scheduling.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/RTScheduling/MIF_Scheduling.idl')
-rw-r--r--TAO/examples/RTScheduling/MIF_Scheduling.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/TAO/examples/RTScheduling/MIF_Scheduling.idl b/TAO/examples/RTScheduling/MIF_Scheduling.idl
new file mode 100644
index 00000000000..9d1705268c5
--- /dev/null
+++ b/TAO/examples/RTScheduling/MIF_Scheduling.idl
@@ -0,0 +1,20 @@
+//$Id$
+
+#include "tao/RTScheduling/RTScheduler_include.pidl"
+#include "tao/RTCORBA/RTCORBA_include.pidl"
+
+module MIF_Scheduling
+{
+ local interface SegmentSchedulingParameterPolicy
+ : CORBA::Policy
+ {
+ attribute short importance;
+ };
+
+ local interface MIF_Scheduler : RTScheduling::Scheduler
+ {
+ SegmentSchedulingParameterPolicy
+ create_segment_scheduling_parameter
+ (in short segment_importance);
+ };
+};