#include <Sched_Params.h>
Public Member Functions | |
ACE_Sched_Priority_Iterator (const ACE_Sched_Params::Policy &policy, int scope=ACE_SCOPE_THREAD) | |
~ACE_Sched_Priority_Iterator (void) | |
Default dtor. | |
int | more (void) const |
Check if there are more priorities. | |
int | priority (void) const |
Return the current priority. | |
void | next (void) |
const ACE_Sched_Params::Policy & | policy (void) const |
Accessor for the scheduling policy over which we are iterating. | |
int | scope (void) const |
Accessor for the scheduling. | |
Private Attributes | |
ACE_Sched_Params::Policy | policy_ |
int | scope_ |
int | priority_ |
The current priority. | |
int | done_ |
The order of priorities (numeric value vs. importance) is OS dependant, it can be the case that the priorities are not even contigous. This class permits iteration over priorities using the iterator pattern.
Definition at line 181 of file Sched_Params.h.
|
Initialize the iterator, the arguments define the scheduling policy and scope for the priorities (see ACE_Sched_Param). Definition at line 101 of file Sched_Params.inl. References ACE_Sched_Params::Policy, ACE_Sched_Params::priority_min(), and scope().
|
|
Default dtor.
Definition at line 112 of file Sched_Params.inl.
00113 { 00114 } |
|
Check if there are more priorities.
Definition at line 117 of file Sched_Params.inl. References done_.
00118 { 00119 return !this->done_; 00120 } |
|
Move to the next priority. The iteration is from lowest to highest importance. Definition at line 129 of file Sched_Params.inl. References done_, ACE_Sched_Params::next_priority(), priority(), and scope().
|
|
Accessor for the scheduling policy over which we are iterating.
Definition at line 89 of file Sched_Params.inl.
00090 { 00091 return this->policy_; 00092 } |
|
Return the current priority.
Definition at line 123 of file Sched_Params.inl. Referenced by next().
00124 { 00125 return this->priority_; 00126 } |
|
Accessor for the scheduling.
Definition at line 95 of file Sched_Params.inl. Referenced by ACE_Sched_Priority_Iterator(), and next().
00096 { 00097 return this->scope_; 00098 } |
|
This is set to 1 when there are no more priorities. Cannot easily compare against the highest priority on platforms were priorities are non-contigous or descending. Definition at line 222 of file Sched_Params.h. |
|
The Scheduling policy (FIFO, RR, etc.) and scheduling scope (PROCESS, SYSTEM) we are iterating on. Definition at line 211 of file Sched_Params.h. |
|
The current priority.
Definition at line 215 of file Sched_Params.h. |
|
Definition at line 212 of file Sched_Params.h. |