Skip to content

Commit

Permalink
debugging: slides: fix priority range for realtime schedulers
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Ceresoli <[email protected]>
  • Loading branch information
lucaceresoli committed Sep 19, 2023
1 parent 561325a commit 638ce9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/scheduling-classes.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 638ce9d

Please sign in to comment.