aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/sched_litmus.c
Commit message (Collapse)AuthorAge
* litmus core: cleanupBjoern B. Brandenburg2009-05-04
| | | | Line breaks, ammend comments, etc.
* litmus core: provide central NO_CPU definitionBjoern B. Brandenburg2009-04-22
| | | | this removes a blatant case of copy&paste reuse
* litmus core: fix CPU time accountingBjoern B. Brandenburg2009-04-11
| | | | | Tell Linux how much time each RT task consumed. This fixes the behavior of CPU timers and tools like top.
* litmus core: respect preempt_count hackBjoern B. Brandenburg2009-04-08
| | | | | Don't confuse the plugins by calling task_block()/wake_up() when they wouldn't have been called without the race.
* move task present flag from PFAIR to Litmus coreBjoern B. Brandenburg2009-04-02
| | | | | Other quantum-based plugins also require the present flag. Hence, move it to the core data structure
* sched_trace: new implementationBjoern B. Brandenburg2008-10-06
| | | | | This provides and hooks up a new made-from-scratch sched_trace() implementation based on Feather-Trace and ftdev.
* LITMUS Core: delay migration until context switch is completeBjoern B. Brandenburg2008-05-10
| | | | | | Also: - add some memory barriers, to be on the safe side - fix some line breaks
* LITMUS: don't invoke plugin for non-real-time tasksBjoern B. Brandenburg2008-05-05
| | | | The plugins don't care about best-effort tasks. Don't bother them.
* LITMUS: avoid using the same stack on two CPUs in global schedulersBjoern B. Brandenburg2008-05-04
| | | | | This change fixes a race where a job could be executed on more than one CPU, which to random crashes.
* LITMUS: rework job migration codeBjoern B. Brandenburg2008-05-02
| | | | | The old version had a significant window for races with interrupt handlers executing on other CPUs.
* LITMUS CORE: Release jobs with hrtimersJohn M. Calandrino2008-04-30
| | | | John's proposal for how to release jobs with hrtimers.
* LITMUS 2008: Initial PortBjoern B. Brandenburg2008-02-13
This introduces the core changes ported from LITMUS 2007. The kernel seems to work under QEMU, but many bugs probably remain.