diff options
author | Richard Braun <rbraun@sceen.net> | 2017-03-13 23:17:10 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-03-13 23:17:10 +0100 |
commit | bd5c89e7aa9edadf3ea39d6cbf7513c4953b41bc (patch) | |
tree | 951bc69e84c6e1af7f929900f6d4bafc2f864e42 /kern/thread.h | |
parent | b1aa94d0c7dba4138f651e6b081c1a0055ea8d54 (diff) |
kern/thread: reduce the number of real-time priorities to 32
Diffstat (limited to 'kern/thread.h')
-rw-r--r-- | kern/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/thread.h b/kern/thread.h index 60c330b9..28404fb4 100644 --- a/kern/thread.h +++ b/kern/thread.h @@ -85,7 +85,7 @@ struct thread_sched_data { * Real-time priority properties. */ #define THREAD_SCHED_RT_PRIO_MIN 0 -#define THREAD_SCHED_RT_PRIO_MAX 63 +#define THREAD_SCHED_RT_PRIO_MAX 31 /* * Fair-scheduling priority properties. |