summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-23 20:57:26 +0000
committeryamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-06-23 20:57:26 +0000
commita00d291ba071664987e9b5470717b7d308684193 (patch)
treee98ae4fdb394cddecfc8bc086ceac004dc399e49
parent3cb811707485a143ecce1fcd6889405852caae64 (diff)
downloadATCD-a00d291ba071664987e9b5470717b7d308684193.tar.gz
*** empty log message ***
-rw-r--r--TAO/examples/RTScheduling/MIF_Scheduling.idl19
1 files changed, 19 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..d2193a43164
--- /dev/null
+++ b/TAO/examples/RTScheduling/MIF_Scheduling.idl
@@ -0,0 +1,19 @@
+//$Id$
+#include <RTScheduler.pidl>
+#include <RTCORBA.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);
+ };
+};