diff options
author | Chris Cleeland <chris.cleeland@gmail.com> | 1997-03-10 17:22:35 +0000 |
---|---|---|
committer | Chris Cleeland <chris.cleeland@gmail.com> | 1997-03-10 17:22:35 +0000 |
commit | 7009571b84f6b9215aaa18784b7e5c307073e356 (patch) | |
tree | a24b33adaae621ce0d165c9f9b54380d30d3783e /ace/Sched_Params.cpp | |
parent | a866fa7f4860ff9d3ee38274fa88a2fb2898662d (diff) | |
download | ATCD-7009571b84f6b9215aaa18784b7e5c307073e356.tar.gz |
Fixed broken #elif constructs in a few places.
Modified Files:
Sched_Params.cpp
Diffstat (limited to 'ace/Sched_Params.cpp')
-rw-r--r-- | ace/Sched_Params.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Sched_Params.cpp b/ace/Sched_Params.cpp index 0af0837391f..b56b0a8860a 100644 --- a/ace/Sched_Params.cpp +++ b/ace/Sched_Params.cpp @@ -104,7 +104,7 @@ ACE_Sched_Params::priority_min (const Policy policy, ACE_UNUSED_ARG (policy); ACE_UNUSED_ARG (scope); return 255; -#elif +#else ACE_UNUSED_ARG (policy); ACE_UNUSED_ARG (scope); ACE_NOTSUP_RETURN (-1); @@ -179,7 +179,7 @@ ACE_Sched_Params::priority_max (const Policy policy, ACE_UNUSED_ARG (policy); ACE_UNUSED_ARG (scope); return 0; -#elif +#else ACE_UNUSED_ARG (policy); ACE_UNUSED_ARG (scope); ACE_NOTSUP_RETURN (-1); @@ -222,7 +222,7 @@ ACE_Sched_Params::next_priority (const Policy policy, // including STHREADS, DCETHREADS, and PTHREADS const int max = priority_max (policy, scope); return priority < max ? priority + 1 : max; -#elif +#else ACE_UNUSED_ARG (policy); ACE_UNUSED_ARG (scope); ACE_NOTSUP_RETURN (-1); @@ -265,7 +265,7 @@ ACE_Sched_Params::previous_priority (const Policy policy, // including STHREADS, DCETHREADS, and PTHREADS const int min = priority_min (policy, scope); return priority > min ? priority - 1 : min; -#elif +#else ACE_UNUSED_ARG (policy); ACE_UNUSED_ARG (scope); ACE_NOTSUP_RETURN (-1); |