blob: 08d4eb810b9eebc2312ef6bf4a75e864b77ebba0 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ACE
//
// = FILENAME
// Sched_Params.i
//
// = CREATION DATE
// 28 January 1997
//
// = AUTHOR
// David Levine
//
// ============================================================================
ACE_INLINE
ACE_Sched_Params::ACE_Sched_Params (
const Policy policy,
const ACE_Sched_Priority priority,
const int scope,
const ACE_Time_Value &quantum)
: policy_ (policy),
priority_ (priority),
scope_ (scope),
quantum_ (quantum)
{
}
ACE_INLINE ACE_Sched_Params::~ACE_Sched_Params (void)
{
}
ACE_INLINE ACE_Sched_Params::Policy
ACE_Sched_Params::policy (void) const
{
return this->policy_;
}
ACE_INLINE void
ACE_Sched_Params::policy (const ACE_Sched_Params::Policy policy)
{
this->policy_ = policy;
}
ACE_INLINE ACE_Sched_Priority
ACE_Sched_Params::priority (void) const
{
return this->priority_;
}
ACE_INLINE void
ACE_Sched_Params::priority (const ACE_Sched_Priority priority)
{
this->priority_ = priority;
}
ACE_INLINE int
ACE_Sched_Params::scope (void) const
{
return this->scope_;
}
ACE_INLINE void
ACE_Sched_Params::scope (const int scope)
{
this->scope_ = scope;
}
ACE_INLINE const ACE_Time_Value &
ACE_Sched_Params::quantum (void) const
{
return this->quantum_;
}
ACE_INLINE void
ACE_Sched_Params::quantum (const ACE_Time_Value &quant)
{
this->quantum_ = quant;
}
// EOF
|