summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-03-09 07:51:11 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-03-09 07:51:56 +0100
commit5b76390b499c828c512f867766c7624b12de1885 (patch)
treef9043317346f73d4861ae12f74514411fd4833a6
parentc-user: Rework scheduler alogrithm config defs (diff)
downloadrtems-docs-5b76390b499c828c512f867766c7624b12de1885.tar.bz2
c-user: Fix simple SMP scheduler limits
-rw-r--r--c-user/scheduling_concepts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/c-user/scheduling_concepts.rst b/c-user/scheduling_concepts.rst
index f43b588..0c157d1 100644
--- a/c-user/scheduling_concepts.rst
+++ b/c-user/scheduling_concepts.rst
@@ -271,7 +271,7 @@ Simple Priority SMP Scheduler
A fixed-priority scheduler which uses a sorted chain for the ready tasks. By
convention, the maximum priority level is 255. The implementation limit is
-actually :math:`2^{64} - 1`.
+actually :math:`2^{63} - 1`.
.. _SchedulerSMPPriorityAffinity: