summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/RTScheduling/FP_Scheduling.idl
blob: 8d50919a74b94d8ed34f867bdf6e9740529b53cf (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 FP_Scheduling
{
  local interface SegmentSchedulingParameterPolicy
  : CORBA::Policy
  {
    attribute RTCORBA::Priority value;
  };

  local interface FP_Scheduler : RTScheduling::Scheduler
  {
    SegmentSchedulingParameterPolicy
      create_segment_scheduling_parameter
        (in RTCORBA::Priority segment_priority);
  };
};