diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-10 04:00:20 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-10 04:00:20 +0000 |
commit | 92181ca76e15fad6c2d685c2fc30383774d3794a (patch) | |
tree | f9e97c506852cad1957bcba9d926088e6234c852 /ace/Sched_Params.cpp | |
parent | 37b37b0073bf678d6287f7e52474f4a02c94c707 (diff) | |
download | ATCD-92181ca76e15fad6c2d685c2fc30383774d3794a.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Sched_Params.cpp')
-rw-r--r-- | ace/Sched_Params.cpp | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/ace/Sched_Params.cpp b/ace/Sched_Params.cpp index 3a795775ed8..9b51db97954 100644 --- a/ace/Sched_Params.cpp +++ b/ace/Sched_Params.cpp @@ -53,22 +53,19 @@ ACE_Sched_Params::priority_min (const Policy policy, P_MYID /* ignored */, PC_GETCID, (char *) &pcinfo) == -1) - { - return -1; // just hope that priority range wasn't configured - // from -1 .. 1 - } + // Just hope that priority range wasn't configured from -1 + // .. 1 + return -1; - // OK, now we've got the class ID in pcinfo.pc_cid. In addition, - // the maximum configured time-share priority is in ((tsinfo_t *) - // pcinfo.pc_clinfo)->ts_maxupri. The minimum priority is just - // the negative of that. + // OK, now we've got the class ID in pcinfo.pc_cid. In + // addition, the maximum configured time-share priority is in + // ((tsinfo_t *) pcinfo.pc_clinfo)->ts_maxupri. The minimum + // priority is just the negative of that. return -((tsinfo_t *) pcinfo.pc_clinfo)->ts_maxupri; } else - { - return 0; - } + return 0; #elif defined (ACE_HAS_DCETHREADS) || defined(ACE_HAS_PTHREADS) && !defined(ACE_LACKS_SETSCHED) switch (scope) @@ -140,9 +137,7 @@ ACE_Sched_Params::priority_max (const Policy policy, P_MYID /* ignored */, PC_GETCID, (char *) &pcinfo) == -1) - { - return -1; - } + return -1; // OK, now we've got the class ID in pcinfo.pc_cid. In addition, // the maximum configured real-time priority is in ((rtinfo_t *) @@ -277,7 +272,8 @@ ACE_Sched_Params::previous_priority (const Policy policy, #elif defined (ACE_HAS_THREADS) && !defined(ACE_LACKS_SETSCHED) // including STHREADS, DCETHREADS, and PTHREADS const int min = priority_min (policy, scope); - return priority > min ? priority - 1 : min; + + return priority > min ? priority - 1 : min; #else ACE_UNUSED_ARG (policy); ACE_UNUSED_ARG (scope); |