| Commit message (Collapse) | Author | Age |
| |
|
|
| |
schedulers in native code and easy max lateness computation.
|
| | |
|
| |
|
|
|
|
|
| |
1) On Linux hosts, limits.h must be included explicitly.
2) Don't try to compute the busy interval if the task system
is over-utilized.
|
| |
|
|
| |
Based on Zhang and Burns (2009), "Schedulability Analysis for Real-Time Systems with EDF Scheduling", IEEE Transactions on Computers, Vol 58, No 9.
|
| | |
|
| | |
|
| |
|
|
|
|
| |
integral_t == integral time units
fractional_t == fractions of integral time units
This is hopefully less of an eyesore than mpq_class and mpz_class.
|
| |
|
|
| |
This could create a floating point exception (division by zero) in edge cases.
|
| |
|
|
|
| |
Give up after running for 5 seconds. This is almost never triggered, but once in a while
this should help to catch a pseudo-polynomial excursion.
|
|
|
Based on the code available at http://www.cs.unc.edu/~bbb/diss,
this is a cleaned-up version of schedcat intended to serve as
the basis for all further development.
Notable improvements: more unit tests and a cleaner module structure.
|