summaryrefslogtreecommitdiff
path: root/kern/thread.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-03-13 23:17:10 +0100
committerRichard Braun <rbraun@sceen.net>2017-03-13 23:17:10 +0100
commitbd5c89e7aa9edadf3ea39d6cbf7513c4953b41bc (patch)
tree951bc69e84c6e1af7f929900f6d4bafc2f864e42 /kern/thread.h
parentb1aa94d0c7dba4138f651e6b081c1a0055ea8d54 (diff)
kern/thread: reduce the number of real-time priorities to 32
Diffstat (limited to 'kern/thread.h')
-rw-r--r--kern/thread.h2
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.