commit | 4a2e50f6b0a76086f7c812597156e748d21825fc | [log] [tgz] |
---|---|---|
author | Andy Ross <andrew.j.ross@intel.com> | Tue May 15 11:06:25 2018 -0700 |
committer | Anas Nashif <anas.nashif@intel.com> | Wed May 23 14:25:52 2018 -0400 |
tree | 9801180b156fed84434134d1b68fd4882eccb7f2 | |
parent | 7aa25fa5eb2092d5806d3f55936158a6071f38fc [diff] |
kernel: Earliest-deadline-first scheduling policy Very simple implementation of deadline scheduling. Works by storing a single word in each thread containing a deadline, setting it (as a delta from "now") via a single new API call, and using it as extra input to the existing thread priority comparison function when priorities are equal. Signed-off-by: Andy Ross <andrew.j.ross@intel.com>