zephyr/doc/kernel/threads
Andy Ross 7aa25fa5eb kernel: Add "meta IRQ" thread priorities
This patch adds a set of priorities at the (numerically) lowest end of
the range which have "meta-irq" behavior.  Runnable threads at these
priorities will always be scheduled before threads at lower
priorities, EVEN IF those threads are otherwise cooperative and/or
have taken a scheduler lock.

Making such a thread runnable in any way thus has the effect of
"interrupting" the current task and running the meta-irq thread
synchronously, like an exception or system call.  The intent is to use
these priorities to implement "interrupt bottom half" or "tasklet"
behavior, allowing driver subsystems to return from interrupt context
but be guaranteed that user code will not be executed (on the current
CPU) until the remaining work is finished.

As this breaks the "promise" of non-preemptibility granted by the
current API for cooperative threads, this tool probably shouldn't be
used from application code.

Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
2018-05-23 14:25:52 -04:00
..
custom_data.rst docs: convert to using newly introduced integer sized types 2017-04-21 16:11:51 +00:00
lifecycle.rst kernel: Deprecate k_thread_cancel() API 2018-04-24 03:57:20 +05:30
scheduling.rst kernel: Add "meta IRQ" thread priorities 2018-05-23 14:25:52 -04:00
system_threads.rst doc: move kernel_v2 to kernel 2016-12-24 01:53:16 +00:00
threads.rst doc: move kernel_v2 to kernel 2016-12-24 01:53:16 +00:00
workqueues.rst doc: update for new stack macros 2017-06-13 14:34:07 -04:00