summaryrefslogtreecommitdiff
path: root/ace/Sched_Params.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-12 18:38:45 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-12 18:38:45 +0000
commit5fdedeeb458bc2578a40180a1e8e2a37741eef00 (patch)
treefc67e81cf52a85602d98ec4e11a64034ab82aaaf /ace/Sched_Params.h
parentff85c17c2e6db2f467d5e86ca733249b4cfc0182 (diff)
downloadATCD-5fdedeeb458bc2578a40180a1e8e2a37741eef00.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Sched_Params.h')
-rw-r--r--ace/Sched_Params.h14
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_;