diff options
author | rpj <rpj> | 2004-05-17 01:38:02 +0000 |
---|---|---|
committer | rpj <rpj> | 2004-05-17 01:38:02 +0000 |
commit | 771465fed0cf50ee2dd790723245fc091699c324 (patch) | |
tree | d8c18d095a33fe7c4564bd90c5f313bb9e4057dd /sched_get_priority_min.c | |
parent | 8b14911744f58cbe3730703f3fcc41cd969fd0f3 (diff) |
re-indentation, bug fixes, hooks for pre-emptive async cancelation
Diffstat (limited to 'sched_get_priority_min.c')
-rw-r--r-- | sched_get_priority_min.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sched_get_priority_min.c b/sched_get_priority_min.c index 5c88137..1051f67 100644 --- a/sched_get_priority_min.c +++ b/sched_get_priority_min.c @@ -117,7 +117,7 @@ int -sched_get_priority_min(int policy) +sched_get_priority_min (int policy) { if (policy < SCHED_MIN || policy > SCHED_MAX) { @@ -127,9 +127,9 @@ sched_get_priority_min(int policy) #if (THREAD_PRIORITY_LOWEST > THREAD_PRIORITY_NORMAL) /* WinCE? */ - return PTW32_MIN(THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); + return PTW32_MIN (THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); #else /* This is independent of scheduling policy in Win32. */ - return PTW32_MIN(THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); + return PTW32_MIN (THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); #endif } |