This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
realtime:documentation:howto:applications:cyclic [2017/05/19 15:49] jogness grammar / punctuation |
realtime:documentation:howto:applications:cyclic [2017/06/20 14:15] (current) anna-maria adapt link kernel documentation |
||
|---|---|---|---|
| Line 31: | Line 31: | ||
| wait_rest_of_period(&pinfo); | wait_rest_of_period(&pinfo); | ||
| } | } | ||
| + | | ||
| + | return NULL; | ||
| } | } | ||
| </code> | </code> | ||
| Line 82: | Line 84: | ||
| Recently, earliest deadline first scheduling algorithm has been merged in the mainline kernel. Now, users can specify runtime, period and deadline of a task and they scheduler will run the task every specified period and will make sure the deadline is met. The scheduler will also let user know if the tasks(or a set of tasks) cannot be scheduled because the deadline won't be met. | Recently, earliest deadline first scheduling algorithm has been merged in the mainline kernel. Now, users can specify runtime, period and deadline of a task and they scheduler will run the task every specified period and will make sure the deadline is met. The scheduler will also let user know if the tasks(or a set of tasks) cannot be scheduled because the deadline won't be met. | ||
| - | More information about the EDF scheduler including an example of implementation can be found at: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/scheduler/sched-deadline.txt?id=refs/tags/v4.10-rc2 | + | More information about the EDF scheduler including an example of implementation can be found at: https://www.kernel.org/doc/Documentation/scheduler/sched-deadline.txt |