diff options
Diffstat (limited to 'ace/Sched_Params.i')
-rw-r--r-- | ace/Sched_Params.i | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ace/Sched_Params.i b/ace/Sched_Params.i index d7e45fdf875..201b933f5f9 100644 --- a/ace/Sched_Params.i +++ b/ace/Sched_Params.i @@ -82,6 +82,18 @@ ACE_Sched_Params::quantum (const ACE_Time_Value &quant) this->quantum_ = quant; } +ACE_INLINE const ACE_Sched_Params::Policy & +ACE_Sched_Priority_Iterator::policy (void) const +{ + return this->policy_; +} + +ACE_INLINE int +ACE_Sched_Priority_Iterator::scope (void) const +{ + return this->scope_; +} + ACE_INLINE ACE_Sched_Priority_Iterator::ACE_Sched_Priority_Iterator (const ACE_Sched_Params::Policy &policy, int scope) @@ -118,15 +130,3 @@ ACE_Sched_Priority_Iterator::next (void) this->scope ()); this->done_ = old_priority == priority_; } - -ACE_INLINE const ACE_Sched_Params::Policy & -ACE_Sched_Priority_Iterator::policy (void) const -{ - return this->policy_; -} - -ACE_INLINE int -ACE_Sched_Priority_Iterator::scope (void) const -{ - return this->scope_; -} |