From 638ce9d88e175725cdfd0bc037f235098617cf1d Mon Sep 17 00:00:00 2001 From: Luca Ceresoli Date: Tue, 19 Sep 2023 12:11:51 +0200 Subject: [PATCH] debugging: slides: fix priority range for realtime schedulers Signed-off-by: Luca Ceresoli --- common/scheduling-classes.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scheduling-classes.tex b/common/scheduling-classes.tex index e5b88801d1..0a8efabecb 100644 --- a/common/scheduling-classes.tex +++ b/common/scheduling-classes.tex @@ -30,7 +30,7 @@ \item Runnable tasks will preempt any other lower-priority task \item \ksym{SCHED_FIFO}: All tasks with the same priority are scheduled \textbf{First in, First out} \item \ksym{SCHED_RR}: Similar to \ksym{SCHED_FIFO} but with a time-sharing round-robin between tasks with the same priority - \item Both \ksym{SCHED_FIFO} and \ksym{SCHED_RR} can be assigned a priority between 0 and 99 + \item Both \ksym{SCHED_FIFO} and \ksym{SCHED_RR} can be assigned a priority between 1 and 99 \item \ksym{SCHED_DEADLINE}: For tasks doing recurrent jobs, extra attributes are attached to a task \begin{itemize} \item A computation time, which represents the time the task needs to complete a job