summaryrefslogtreecommitdiff
path: root/TAO/examples/RTScheduling/MIF_Scheduling.idl
blob: 9d1705268c5e68437d9d080baa7d2c45b1dc70bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
  };
};