blob: 040a1554872aa0582660140c1bc5b844967c7f45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/**
* @file Kokyu_qos.idl
*
*/
#ifndef _KOKYU_DSRT_QOS_PIDL_
#define _KOKYU_DSRT_QOS_PIDL_
#include "tao/TimeBase.pidl"
#include "tao/RTCORBA/RTCORBA_include.pidl"
#pragma prefix "omg.org"
module Kokyu
{
typedef sequence<octet> GuidType;
struct Svc_Ctxt_DSRT_QoS
{
GuidType guid;
long importance;
long criticality;
RTCORBA::Priority desired_priority;
TimeBase::TimeT deadline;
TimeBase::TimeT estimated_initial_execution_time;
};
};
#endif /* KOKYU_DSRT_QOS_PIDL */
|