diff options
author | Richard Braun <rbraun@sceen.net> | 2014-01-03 23:54:33 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2014-01-03 23:54:33 +0100 |
commit | a07fad83320e5c1f8c1efe8a716a74731a852e99 (patch) | |
tree | c990091fec942245bb2ca0cd717617462805a5a0 /kern/thread.h | |
parent | b5a657f59cfc9ed0d892ec6f7b9d7e7e63cdea76 (diff) |
kern/thread: increase the number of real-time priorities
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 31e837e5..ea6c82e4 100644 --- a/kern/thread.h +++ b/kern/thread.h @@ -99,7 +99,7 @@ struct thread_ts_runq; * Real-time priority properties. */ #define THREAD_SCHED_RT_PRIO_MIN 0 -#define THREAD_SCHED_RT_PRIO_MAX 31 +#define THREAD_SCHED_RT_PRIO_MAX 63 /* * Scheduling data for a real-time thread. |