diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-12 18:38:45 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-12 18:38:45 +0000 |
commit | d85bd1bcd0d71fc620645ccc4a2ddf88ef3219ed (patch) | |
tree | fc67e81cf52a85602d98ec4e11a64034ab82aaaf /ace/Sched_Params.h | |
parent | d97e343634a25cb8148fa2bafbe9a10ec7e4dbd1 (diff) | |
download | ATCD-d85bd1bcd0d71fc620645ccc4a2ddf88ef3219ed.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Sched_Params.h')
-rw-r--r-- | ace/Sched_Params.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ace/Sched_Params.h b/ace/Sched_Params.h index e8f14b31df7..b210bceb3ff 100644 --- a/ace/Sched_Params.h +++ b/ace/Sched_Params.h @@ -13,7 +13,7 @@ // 28 January 1997 // // = AUTHOR -// David Levine +// David Levine and Carlos O'Ryan // // ============================================================================ @@ -153,17 +153,16 @@ private: class ACE_Export ACE_Sched_Priority_Iterator // = TITLE - // An iterator over the OS defined priorities. + // An iterator over the OS-defined scheduling priorities. // // = DESCRIPTION // 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. + // contigous. This class permits iteration over priorities using + // the iterator pattern. { public: - ACE_Sched_Priority_Iterator (const ACE_Sched_Params::Policy& policy, + ACE_Sched_Priority_Iterator (const ACE_Sched_Params::Policy &policy, int scope = ACE_SCOPE_THREAD); // Initialize the iterator, the arguments define the scheduling // policy and scope for the priorities (see ACE_Sched_Param). @@ -178,13 +177,14 @@ public: // Move to the next priority. // The iteration is from lowest to highest importance. - const ACE_Sched_Params::Policy& policy (void) const; + 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: + // @@ Please comment me. ACE_Sched_Params::Policy policy_; int scope_; int priority_; |