zephyr/kernel/include
Benjamin Walsh f955476559 kernel/arch: optimize memory use of some thread fields
Some thread fields were 32-bit wide, when they are not even close to
using that full range of values. They are instead changed to 8-bit fields.

- prio can fit in one byte, limiting the priorities range to -128 to 127

- recursive scheduler locking can be limited to 255; a rollover results
  most probably from a logic error

- flags are split into execution flags and thread states; 8 bits is
  enough for each of them currently, with at worst two states and four
  flags to spare (on x86, on other archs, there are six flags to spare)

Doing this saves 8 bytes per stack. It also sets up an incoming
enhancement when checking if the current thread is preemptible on
interrupt exit.

Change-Id: Ieb5321a5b99f99173b0605dd4a193c3bc7ddabf4
Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
2017-01-09 20:52:24 +00:00
..
gen_offset.h kernel: fix all nanokernel usage in comments 2016-12-21 18:45:03 +00:00
kernel_offsets.h kernel/arch: optimize memory use of some thread fields 2017-01-09 20:52:24 +00:00
kernel_structs.h kernel/arch: optimize memory use of some thread fields 2017-01-09 20:52:24 +00:00
ksched.h kernel/arch: optimize memory use of some thread fields 2017-01-09 20:52:24 +00:00
nano_internal.h kernel: fix all nanokernel usage in comments 2016-12-21 18:45:03 +00:00
offsets_short.h kernel/arch: optimize memory use of some thread fields 2017-01-09 20:52:24 +00:00
timeout_q.h kernel: add _timeout_q dump before and after adding timeout 2017-01-06 17:32:27 +00:00
wait_q.h kernel: fix all nanokernel usage in comments 2016-12-21 18:45:03 +00:00