summaryrefslogtreecommitdiff
path: root/TAO/examples/RTScheduling/FP_Scheduling.pidl
blob: 8868d9e4808b0c3cc3647138aece9f17593401b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//$Id$
#include <tao/RTScheduling/RTScheduler.pidl>
#include <tao/RTCORBA/RTCORBA.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);
  };
};