summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/Sched_Params.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/ace/Sched_Params.h b/ace/Sched_Params.h
index a79670a8a66..4d95b8f1017 100644
--- a/ace/Sched_Params.h
+++ b/ace/Sched_Params.h
@@ -93,7 +93,8 @@ public:
void quantum (const ACE_Time_Value &);
// = Accessors for OS-specific priorities.
- // These return ACE_SCHED_OTHER if the Policy value is invalid.
+ // These return priority values for ACE_SCHED_OTHER if the Policy value
+ // is invalid.
static int priority_min (const Policy,
const int scope = ACE_SCOPE_THREAD);
static int priority_max (const Policy,
@@ -105,7 +106,8 @@ public:
// The next higher priority. "Higher" refers to scheduling priority,
// not to the priority value itself. (On some platforms, higher scheduling
// priority is indicated by a lower priority value.) If "priority" is
- // the highest priority (for the specified policy), then it is returned.
+ // already the highest priority (for the specified policy), then it is
+ // returned.
static int previous_priority (const Policy,
const int priority,
@@ -113,7 +115,8 @@ public:
// The previous, lower priority. "Lower" refers to scheduling priority,
// not to the priority value itself. (On some platforms, lower scheduling
// priority is indicated by a higher priority value.) If "priority" is
- // the lowest priority (for the specified policy), then it is returned.
+ // already the lowest priority (for the specified policy), then it is
+ // returned.
private:
Policy policy_;